From 2c441d09e5c799d28510595ef453db91987a640f Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Wed, 12 Oct 2011 16:52:55 -0400 Subject: [PATCH] Internal version number to 8.01 for imminent release --- citadel/citadel.h | 4 ++-- citadel/configure.ac | 2 +- libcitadel/README.txt | 2 +- libcitadel/configure.in | 2 +- libcitadel/lib/libcitadel.h | 2 +- webcit/webcit.h | 16 ++++++++-------- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/citadel/citadel.h b/citadel/citadel.h index 5e9d6fc8f..f3ef0ceb0 100644 --- a/citadel/citadel.h +++ b/citadel/citadel.h @@ -51,10 +51,10 @@ extern "C" { * usually more strict because you're not really supposed to dump/load and * upgrade at the same time. */ -#define REV_LEVEL 800 /* This version */ +#define REV_LEVEL 801 /* This version */ #define REV_MIN 591 /* Oldest compatible database */ #define EXPORT_REV_MIN 760 /* Oldest compatible export files */ -#define LIBCITADEL_MIN 800 /* Minimum required version of libcitadel */ +#define LIBCITADEL_MIN 801 /* 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 7480f35ff..1cecac52b 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.00], [http://www.citadel.org/]) +AC_INIT([Citadel], [8.01], [http://www.citadel.org/]) AC_REVISION([$Revision: 5108 $]) AC_CONFIG_SRCDIR([citserver.c]) AC_CONFIG_HEADER(sysdep.h) diff --git a/libcitadel/README.txt b/libcitadel/README.txt index 68421977a..167df4b76 100644 --- a/libcitadel/README.txt +++ b/libcitadel/README.txt @@ -4,7 +4,7 @@ WebCit. It is not intended to be a general-purpose library for widespread use, although there are parts of it that may be useful for that purpose, such as the MIME parser and the vCard data type. -Copyright (c) 1987-2010 by the citadel.org development team. +Copyright (c) 1987-2011 by the citadel.org development team. This program is distributed under the terms of the GNU General Public License, version 3. diff --git a/libcitadel/configure.in b/libcitadel/configure.in index eb3f4c0ed..287d9122a 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, 8.00, http://uncensored.citadel.org) +AC_INIT(libcitadel, 8.01, http://uncensored.citadel.org) AC_CONFIG_SRCDIR(Makefile.in) AC_CONFIG_AUX_DIR(conftools) diff --git a/libcitadel/lib/libcitadel.h b/libcitadel/lib/libcitadel.h index ff87152b2..3f1e59785 100644 --- a/libcitadel/lib/libcitadel.h +++ b/libcitadel/lib/libcitadel.h @@ -16,7 +16,7 @@ #include #include -#define LIBCITADEL_VERSION_NUMBER 800 +#define LIBCITADEL_VERSION_NUMBER 801 /* * Here's a bunch of stupid magic to make the MIME parser portable. diff --git a/webcit/webcit.h b/webcit/webcit.h index 432bdf516..ad5aafc11 100644 --- a/webcit/webcit.h +++ b/webcit/webcit.h @@ -144,9 +144,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 800 /* This version of WebCit */ -#define MINIMUM_CIT_VERSION 800 /* min required Citadel ver */ -#define LIBCITADEL_MIN 800 /* min required libcitadel ver */ +#define CLIENT_VERSION 801 /* This version of WebCit */ +#define MINIMUM_CIT_VERSION 801 /* min required Citadel ver */ +#define LIBCITADEL_MIN 801 /* min required libcitadel ver */ #define DEFAULT_HOST "localhost" /* Default Citadel server */ #define DEFAULT_PORT "504" #define TARGET "webcit01" /* Target for inline URL's */ @@ -199,14 +199,14 @@ extern char *ssl_cipher_list; /* * user/room access */ -#define UA_KNOWN 2 -#define UA_GOTOALLOWED 4 -#define UA_HASNEWMSGS 8 -#define UA_ZAPPED 16 +#define UA_KNOWN 2 +#define UA_GOTOALLOWED 4 +#define UA_HASNEWMSGS 8 +#define UA_ZAPPED 16 #define UA_POSTALLOWED 32 #define UA_ADMINALLOWED 64 #define UA_DELETEALLOWED 128 -#define UA_ISTRASH 256 /* Only available in room view... */ +#define UA_ISTRASH 256 /* Only available in room view... */ /* -- 2.30.2