From: Art Cancro Date: Tue, 1 Jan 2013 22:20:20 +0000 (-0500) Subject: Version number to 8.16 for imminent release X-Git-Tag: v8.16~14 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=b8a4373835ce361d8b369c1445a4777c974b21f3 Version number to 8.16 for imminent release --- diff --git a/citadel/citadel.h b/citadel/citadel.h index 38dbf55ff..984ba4c6a 100644 --- a/citadel/citadel.h +++ b/citadel/citadel.h @@ -1,7 +1,7 @@ /* * Main Citadel header file * - * Copyright (c) 1987-2012 by the citadel.org team + * Copyright (c) 1987-2013 by the citadel.org team * * This program is open source software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3. @@ -45,10 +45,10 @@ extern "C" { * usually more strict because you're not really supposed to dump/load and * upgrade at the same time. */ -#define REV_LEVEL 815 /* This version */ +#define REV_LEVEL 816 /* This version */ #define REV_MIN 591 /* Oldest compatible database */ #define EXPORT_REV_MIN 760 /* Oldest compatible export files */ -#define LIBCITADEL_MIN 815 /* Minimum required version of libcitadel */ +#define LIBCITADEL_MIN 816 /* Minimum required version of libcitadel */ #define SERVER_TYPE 0 /* zero for stock Citadel; other developers please obtain SERVER_TYPE codes for your implementations */ diff --git a/citadel/configure.ac b/citadel/configure.ac index 3422c763c..3b1945b35 100644 --- a/citadel/configure.ac +++ b/citadel/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.52) -AC_INIT([Citadel], [8.15], [http://www.citadel.org/]) +AC_INIT([Citadel], [8.16], [http://www.citadel.org/]) AC_REVISION([$Revision: 5108 $]) AC_CONFIG_SRCDIR([citserver.c]) AC_CONFIG_HEADER(sysdep.h) diff --git a/citadel/debian/changelog b/citadel/debian/changelog index e0e44e2fb..bf1ef5b59 100644 --- a/citadel/debian/changelog +++ b/citadel/debian/changelog @@ -1,3 +1,9 @@ +citadel (8.16-1) stable; urgency=low + + * new upstream version + + -- Wilfried Goesgens Tue, 1 Jan 2013 22:00:00 +0001 + citadel (8.15-1) stable; urgency=low * new upstream version diff --git a/citadel/server_main.c b/citadel/server_main.c index 7c6a46434..ab15e72a1 100644 --- a/citadel/server_main.c +++ b/citadel/server_main.c @@ -204,7 +204,7 @@ int main(int argc, char **argv) syslog(LOG_NOTICE, "*** Citadel server engine v%d.%02d (build %s) ***", (REV_LEVEL/100), (REV_LEVEL%100), svn_revision()); - syslog(LOG_NOTICE, "Copyright (C) 1987-2012 by the Citadel development team."); + syslog(LOG_NOTICE, "Copyright (C) 1987-2013 by the Citadel development team."); syslog(LOG_NOTICE, "This program is distributed under the terms of the GNU " "General Public License."); syslog(LOG_NOTICE, " "); diff --git a/libcitadel/configure.in b/libcitadel/configure.in index d856bf1df..c7efc3c44 100755 --- a/libcitadel/configure.in +++ b/libcitadel/configure.in @@ -5,7 +5,7 @@ dnl dnl Ensure that libcitadel is configured with autoconf 2.52 or newer AC_PREREQ(2.52) -AC_INIT(libcitadel, 3.8.15, http://uncensored.citadel.org) +AC_INIT(libcitadel, 3.8.16, http://uncensored.citadel.org) AC_CONFIG_SRCDIR(Makefile.in) AC_CONFIG_AUX_DIR(conftools) @@ -23,7 +23,7 @@ dnl If the API changes incompatibly set LIBAGE back to 0 dnl LIBCURRENT=3 -LIBREVISION=815 +LIBREVISION=816 LIBAGE=0 sinclude(conftools/libtool.m4) diff --git a/libcitadel/debian/changelog b/libcitadel/debian/changelog index 0c22a130a..f179d5155 100644 --- a/libcitadel/debian/changelog +++ b/libcitadel/debian/changelog @@ -1,3 +1,9 @@ +libcitadel (8.16-1) stable; urgency=low + + * new release + + -- Wilfried Goesgens Tue, 1 Jan 2013 22:00:00 +0001 + libcitadel (8.15-1) stable; urgency=low * new release diff --git a/libcitadel/lib/libcitadel.h b/libcitadel/lib/libcitadel.h index 9489cc8cd..519aaa9df 100644 --- a/libcitadel/lib/libcitadel.h +++ b/libcitadel/lib/libcitadel.h @@ -1,7 +1,7 @@ /* * Header file for libcitadel * - * Copyright (c) 1987-2012 by the citadel.org team + * Copyright (c) 1987-2013 by the citadel.org team * * This program is open source software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3. @@ -28,7 +28,7 @@ #include #include -#define LIBCITADEL_VERSION_NUMBER 815 +#define LIBCITADEL_VERSION_NUMBER 816 /* * Here's a bunch of stupid magic to make the MIME parser portable. diff --git a/webcit/configure.ac b/webcit/configure.ac index 9d65ff148..273350ef4 100644 --- a/webcit/configure.ac +++ b/webcit/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. dnl $Id$ -AC_INIT([WebCit], [8.15], [http://www.citadel.org/]) +AC_INIT([WebCit], [8.16], [http://www.citadel.org/]) AC_SUBST(PROG_SUBDIRS) diff --git a/webcit/debian/changelog b/webcit/debian/changelog index a7375fde2..07f606e44 100644 --- a/webcit/debian/changelog +++ b/webcit/debian/changelog @@ -1,3 +1,9 @@ +webcit (8.16-1) stable; urgency=low + + * new release + + -- Wilfried Goesgens Tue, 1 Jan 2013 22:00:00 +0001 + webcit (8.15-1) stable; urgency=low * new release diff --git a/webcit/webcit.h b/webcit/webcit.h index 4ff69e9a8..1bed8d82a 100644 --- a/webcit/webcit.h +++ b/webcit/webcit.h @@ -128,9 +128,9 @@ extern char *ssl_cipher_list; #define PORT_NUM 2000 /* port number to listen on */ #define DEVELOPER_ID 0 #define CLIENT_ID 4 -#define CLIENT_VERSION 815 /* This version of WebCit */ -#define MINIMUM_CIT_VERSION 815 /* Minimum required version of Citadel server */ -#define LIBCITADEL_MIN 815 /* Minimum required version of libcitadel */ +#define CLIENT_VERSION 816 /* This version of WebCit */ +#define MINIMUM_CIT_VERSION 816 /* Minimum required version of Citadel server */ +#define LIBCITADEL_MIN 816 /* Minimum required version of libcitadel */ #define DEFAULT_HOST "localhost" /* Default Citadel server */ #define DEFAULT_PORT "504" #define TARGET "webcit01" /* Window target for inline URL's */ diff --git a/webcit/webserver.c b/webcit/webserver.c index c618e5402..558054484 100644 --- a/webcit/webserver.c +++ b/webcit/webserver.c @@ -230,7 +230,7 @@ int main(int argc, char **argv) /* Tell 'em who's in da house */ syslog(1, "%s", PACKAGE_STRING); - syslog(1, "Copyright (C) 1996-2012 by the citadel.org team"); + syslog(1, "Copyright (C) 1996-2013 by the citadel.org team"); syslog(1, " "); syslog(1, "This program is open source software: you can redistribute it and/or"); syslog(1, "modify it under the terms of the GNU General Public License, version 3.");