From: Art Cancro Date: Tue, 21 Dec 2010 03:23:49 +0000 (-0500) Subject: update version number in preparation for 7.85 release X-Git-Tag: v7.86~24 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=c973c74dd07b010e70477d31ca325a8d7ba28190 update version number in preparation for 7.85 release --- diff --git a/citadel/citadel.h b/citadel/citadel.h index 7698db15e..9813272e0 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 784 /* This version */ +#define REV_LEVEL 785 /* This version */ #define REV_MIN 591 /* Oldest compatible database */ #define EXPORT_REV_MIN 760 /* Oldest compatible export files */ -#define LIBCITADEL_MIN 781 /* Minimum required version of libcitadel */ +#define LIBCITADEL_MIN 785 /* 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 744558038..f99752f5e 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.84], [http://www.citadel.org/]) +AC_INIT([Citadel], [7.85], [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 b6d60c947..9223984dc 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-2009 by the citadel.org development team. +Copyright (c) 1987-2010 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 c96ce8114..cad1043bd 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.84, https://uncensored.citadel.org) +AC_INIT(libcitadel, 7.85, http://www.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 65321b7b7..e7fe21d1c 100644 --- a/libcitadel/lib/libcitadel.h +++ b/libcitadel/lib/libcitadel.h @@ -10,7 +10,7 @@ #include #include #include -#define LIBCITADEL_VERSION_NUMBER 784 +#define LIBCITADEL_VERSION_NUMBER 785 /* * Here's a bunch of stupid magic to make the MIME parser portable. diff --git a/webcit/configure.ac b/webcit/configure.ac index 0289782a4..8f34adef3 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.84], [http://www.citadel.org/]) +AC_INIT([WebCit], [7.85], [http://www.citadel.org/]) AC_SUBST(PROG_SUBDIRS) diff --git a/webcit/webcit.h b/webcit/webcit.h index 2debdabd6..c1c74a624 100644 --- a/webcit/webcit.h +++ b/webcit/webcit.h @@ -1,5 +1,4 @@ -/* $Id$ - * +/* * Copyright (c) 1987-2010 by the citadel.org team * * This program is free software; you can redistribute it and/or modify @@ -138,9 +137,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 784 /* This version of WebCit */ -#define MINIMUM_CIT_VERSION 781 /* min required Citadel ver */ -#define LIBCITADEL_MIN 781 /* min required libcitadel ver */ +#define CLIENT_VERSION 785 /* This version of WebCit */ +#define MINIMUM_CIT_VERSION 785 /* min required Citadel ver */ +#define LIBCITADEL_MIN 785 /* min required libcitadel ver */ #define DEFAULT_HOST "localhost" /* Default Citadel server */ #define DEFAULT_PORT "504" #define TARGET "webcit01" /* Target for inline URL's */