From bd8aec5ecea29ad91c64b2ea12ed3b7b8c1a543d Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 1 Jan 2018 17:48:56 -0500 Subject: [PATCH] Version 916 tag everything for release --- citadel/citadel.h | 6 +++--- citadel/configure.ac | 2 +- citadel/debian/changelog | 6 ++++++ libcitadel/configure.in | 4 ++-- libcitadel/debian/changelog | 6 ++++++ libcitadel/lib/libcitadel.h | 4 ++-- textclient/configure.ac | 2 +- textclient/debian/changelog | 6 ++++++ webcit/configure.ac | 2 +- webcit/debian/changelog | 6 ++++++ webcit/webcit.h | 4 ++-- 11 files changed, 36 insertions(+), 12 deletions(-) diff --git a/citadel/citadel.h b/citadel/citadel.h index 8773625c7..b15e01527 100644 --- a/citadel/citadel.h +++ b/citadel/citadel.h @@ -1,7 +1,7 @@ /* * Main Citadel header file * - * Copyright (c) 1987-2017 by the citadel.org team + * Copyright (c) 1987-2018 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 915 // This version +#define REV_LEVEL 916 // This version #define REV_MIN 591 // Oldest compatible database #define EXPORT_REV_MIN 760 // Oldest compatible export files -#define LIBCITADEL_MIN 914 // Minimum required version of libcitadel +#define LIBCITADEL_MIN 916 // 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 7e8135b97..17a525991 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], [915], [http://www.citadel.org/]) +AC_INIT([Citadel], [916], [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 f85a97003..9509169f0 100644 --- a/citadel/debian/changelog +++ b/citadel/debian/changelog @@ -1,3 +1,9 @@ +citadel (9.16-1) stable; urgency=low + + * new release + + -- Wilfried Goesgens Wed, 02 Jan 2018 12:56:30 -0400 + citadel (9.15-1) stable; urgency=low * new release diff --git a/libcitadel/configure.in b/libcitadel/configure.in index 625498d8b..14db2bc74 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, 914, http://uncensored.citadel.org) +AC_INIT(libcitadel, 916, http://uncensored.citadel.org) AC_CONFIG_SRCDIR(Makefile.in) AC_CONFIG_AUX_DIR(conftools) @@ -20,7 +20,7 @@ dnl Set LIBAGE to 0. dnl LIBCURRENT=4 -LIBREVISION=914 +LIBREVISION=916 LIBAGE=0 sinclude(conftools/libtool.m4) diff --git a/libcitadel/debian/changelog b/libcitadel/debian/changelog index 186ea22f2..61c8344b2 100644 --- a/libcitadel/debian/changelog +++ b/libcitadel/debian/changelog @@ -1,3 +1,9 @@ +libcitadel (9.16-1) stable; urgency=low + + * new release + + -- Wilfried Goesgens Wed, 01 Jan 2018 12:56:30 -0400 + libcitadel (9.14-1) stable; urgency=low * new release diff --git a/libcitadel/lib/libcitadel.h b/libcitadel/lib/libcitadel.h index ad7058a0b..70e9857c5 100644 --- a/libcitadel/lib/libcitadel.h +++ b/libcitadel/lib/libcitadel.h @@ -1,7 +1,7 @@ /* * Header file for libcitadel * - * Copyright (c) 1987-2017 by the citadel.org team + * Copyright (c) 1987-2018 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 914 +#define LIBCITADEL_VERSION_NUMBER 916 /* * Here's a bunch of stupid magic to make the MIME parser portable. diff --git a/textclient/configure.ac b/textclient/configure.ac index 2fa5c902a..e9a28f501 100644 --- a/textclient/configure.ac +++ b/textclient/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.52) -AC_INIT([Citadel], [902], [http://www.citadel.org/]) +AC_INIT([Citadel], [915], [http://www.citadel.org/]) AC_REVISION([$Revision: 5108 $]) AC_CONFIG_HEADER(sysdep.h) diff --git a/textclient/debian/changelog b/textclient/debian/changelog index dc8c6726b..7c148d67d 100644 --- a/textclient/debian/changelog +++ b/textclient/debian/changelog @@ -1,3 +1,9 @@ +textclient (9.16-1) stable; urgency=low + + * new release + + -- Wilfried Goesgens Wed, 01 Jan 2018 12:56:30 -0400 + textclient (9.01-1) stable; urgency=low * new release diff --git a/webcit/configure.ac b/webcit/configure.ac index 0774acf3a..90a4baa40 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], [915], [http://www.citadel.org/]) +AC_INIT([WebCit], [916], [http://www.citadel.org/]) AC_SUBST(PROG_SUBDIRS) diff --git a/webcit/debian/changelog b/webcit/debian/changelog index 05af7b990..f84c5d122 100644 --- a/webcit/debian/changelog +++ b/webcit/debian/changelog @@ -1,3 +1,9 @@ +webcit (9.16-1) stable; urgency=low + + * new release + + -- Wilfried Goesgens Wed, 02 Jan 2018 12:56:30 -0400 + webcit (9.15-1) stable; urgency=low * new release diff --git a/webcit/webcit.h b/webcit/webcit.h index 7968ac510..9662f973c 100644 --- a/webcit/webcit.h +++ b/webcit/webcit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 1987-2017 by the citadel.org team + * Copyright (c) 1987-2018 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. @@ -127,7 +127,7 @@ 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 915 /* This version of WebCit */ +#define CLIENT_VERSION 916 /* This version of WebCit */ #define MINIMUM_CIT_VERSION 914 /* Minimum required version of Citadel server */ #define LIBCITADEL_MIN 914 /* Minimum required version of libcitadel */ #define DEFAULT_HOST "localhost" /* Default Citadel server */ -- 2.30.2