Version number to 8.16 for imminent release
authorArt Cancro <ajc@uncensored.citadel.org>
Tue, 1 Jan 2013 22:20:20 +0000 (17:20 -0500)
committerArt Cancro <ajc@uncensored.citadel.org>
Tue, 1 Jan 2013 22:20:20 +0000 (17:20 -0500)
citadel/citadel.h
citadel/configure.ac
citadel/debian/changelog
citadel/server_main.c
libcitadel/configure.in
libcitadel/debian/changelog
libcitadel/lib/libcitadel.h
webcit/configure.ac
webcit/debian/changelog
webcit/webcit.h
webcit/webserver.c

index 38dbf55ffecbb7e590bf8fef36e99048199db5a5..984ba4c6ae2a3ed2a9a5c0363667ec7474441eaf 100644 (file)
@@ -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 */
index 3422c763c243483ac52813ff9ceb620b39b330b0..3b1945b35f7ac1c093108bac063bd57be9b55bb7 100644 (file)
@@ -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)
index e0e44e2fb1122ae15e8b7ba442361ed81c8a8739..bf1ef5b59e42fe09b1cd94f563561a1ccfbe86b2 100644 (file)
@@ -1,3 +1,9 @@
+citadel (8.16-1) stable; urgency=low
+
+  * new upstream version
+
+ -- Wilfried Goesgens <w.goesgens@outgesourced.org>  Tue, 1 Jan 2013 22:00:00 +0001
+
 citadel (8.15-1) stable; urgency=low
 
   * new upstream version
index 7c6a46434e8a51e7669f9029eff6d8a9dc701920..ab15e72a1689843bc0aa083e9d40b14cbf398685 100644 (file)
@@ -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, " ");
index d856bf1dfc2b76ad75a100ba2a8fbe840f7cf787..c7efc3c44232b5d4af43fd0a833eb90de52fc0c3 100755 (executable)
@@ -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)
index 0c22a130a6826279f5ad79d6f1bb39959070a0b9..f179d515513fc2c924980d00a94142ff041f6b89 100644 (file)
@@ -1,3 +1,9 @@
+libcitadel (8.16-1) stable; urgency=low
+
+  * new release
+
+ -- Wilfried Goesgens <w.goesgens@outgesourced.org>  Tue, 1 Jan 2013 22:00:00 +0001
+
 libcitadel (8.15-1) stable; urgency=low
 
   * new release
index 9489cc8cd4bc90df2457649c4d3c7ccfc261e2e8..519aaa9df71bab80fdf6f89042aa768cdc9037ba 100644 (file)
@@ -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 <sys/types.h>
 #include <netinet/in.h>
 
-#define LIBCITADEL_VERSION_NUMBER      815
+#define LIBCITADEL_VERSION_NUMBER      816
 
 /*
  * Here's a bunch of stupid magic to make the MIME parser portable.
index 9d65ff1488057eff8e6315b6e7c96789c39d288f..273350ef41e9cafe7161c250714f16b292938e50 100644 (file)
@@ -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)
index a7375fde200587fe95827da51a640849ce14dcf2..07f606e4407eaf55f215d47e57f0eb687d2c9adb 100644 (file)
@@ -1,3 +1,9 @@
+webcit (8.16-1) stable; urgency=low
+
+  * new release
+
+ -- Wilfried Goesgens <w.goesgens@outgesourced.org>  Tue, 1 Jan 2013 22:00:00 +0001
+
 webcit (8.15-1) stable; urgency=low
 
   * new release
index 4ff69e9a833582cbb8ebbcde4b196755e7c0bd05..1bed8d82a89cea6b5da0d7791e3e3000e3bbeed6 100644 (file)
@@ -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 */
index c618e540265750d82ffad7ba256358fc110221c4..558054484cf0e97e0fe79e1e429e321cf8f49ab3 100644 (file)
@@ -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.");