From: Art Cancro Date: Tue, 20 Jul 2010 19:46:38 +0000 (+0000) Subject: * Internal version numbers to 7.81 X-Git-Tag: v7.86~89 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=23f49e4cebee218a171025efeeb67ef6ac85612a * Internal version numbers to 7.81 --- diff --git a/citadel/citadel.h b/citadel/citadel.h index 9de0743d4..266eac3a6 100644 --- a/citadel/citadel.h +++ b/citadel/citadel.h @@ -53,10 +53,10 @@ extern "C" { * usually more strict because you're not really supposed to dump/load and * upgrade at the same time. */ -#define REV_LEVEL 780 /* This version */ +#define REV_LEVEL 781 /* This version */ #define REV_MIN 591 /* Oldest compatible database */ #define EXPORT_REV_MIN 760 /* Oldest compatible export files */ -#define LIBCITADEL_MIN 780 /* Minimum required version of libcitadel */ +#define LIBCITADEL_MIN 781 /* 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 0398fcb18..37411334c 100644 --- a/citadel/configure.ac +++ b/citadel/configure.ac @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. dnl $Id$ AC_PREREQ(2.52) -AC_INIT([Citadel], [7.80], [http://www.citadel.org/]) +AC_INIT([Citadel], [7.81], [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 babf99131..953286715 100644 --- a/citadel/debian/changelog +++ b/citadel/debian/changelog @@ -1,3 +1,9 @@ +citadel (7.81-92) stable; urgency=low + + * new upstream version + + -- Wilfried Goesgens Tue, 19 Jul 2010 22:00:00 +0001 + citadel (7.80-91) stable; urgency=low * new upstream version diff --git a/libcitadel/configure.in b/libcitadel/configure.in index 02908bf01..0d9e4d9ee 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, 7.80, https://uncensored.citadel.org) +AC_INIT(libcitadel, 7.81, https://uncensored.citadel.org) AC_CONFIG_SRCDIR(Makefile.in) AC_CONFIG_AUX_DIR(conftools) diff --git a/libcitadel/debian/changelog b/libcitadel/debian/changelog index c92fdac25..4f2dff062 100644 --- a/libcitadel/debian/changelog +++ b/libcitadel/debian/changelog @@ -1,3 +1,9 @@ +libcitadel (7.81-91) stable; urgency=low + + * new release + + -- Wilfried Goesgens Tue, 19 Jul 2010 22:00:00 +0001 + libcitadel (7.80-90) stable; urgency=low * new release diff --git a/libcitadel/lib/libcitadel.h b/libcitadel/lib/libcitadel.h index 44e1544e7..ef93aaf65 100644 --- a/libcitadel/lib/libcitadel.h +++ b/libcitadel/lib/libcitadel.h @@ -15,7 +15,7 @@ #include #include #include -#define LIBCITADEL_VERSION_NUMBER 780 +#define LIBCITADEL_VERSION_NUMBER 781 /* * Here's a bunch of stupid magic to make the MIME parser portable. diff --git a/webcit/configure.ac b/webcit/configure.ac index 56aa70347..9907bc288 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], [7.80], [http://www.citadel.org/]) +AC_INIT([WebCit], [7.81], [http://www.citadel.org/]) AC_SUBST(PROG_SUBDIRS) diff --git a/webcit/debian/changelog b/webcit/debian/changelog index 0927dd191..b68baddfb 100644 --- a/webcit/debian/changelog +++ b/webcit/debian/changelog @@ -1,3 +1,9 @@ +webcit (7.81-91) stable; urgency=low + + * new release + + -- Wilfried Goesgens Tue, 19 Jul 2010 22:00:00 +0001 + webcit (7.80-90) stable; urgency=low * new release diff --git a/webcit/webcit.h b/webcit/webcit.h index e1b1f747c..5c7b506ab 100644 --- a/webcit/webcit.h +++ b/webcit/webcit.h @@ -138,9 +138,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 780 /* This version of WebCit */ -#define MINIMUM_CIT_VERSION 780 /* min required Citadel ver */ -#define LIBCITADEL_MIN 780 /* min required libcitadel ver */ +#define CLIENT_VERSION 781 /* This version of WebCit */ +#define MINIMUM_CIT_VERSION 781 /* min required Citadel ver */ +#define LIBCITADEL_MIN 781 /* min required libcitadel ver */ #define DEFAULT_HOST "localhost" /* Default Citadel server */ #define DEFAULT_PORT "504" #define TARGET "webcit01" /* Target for inline URL's */