Author: phunt
Date: Wed Jun 25 17:35:22 2014
New Revision: 1605517
URL: http://svn.apache.org/r1605517
Log:
ZOOKEEPER-1938. bump version in the C library as we prepare for 3.5.0 release (Raul Gutierrez
Segales via phunt)
Modified:
zookeeper/trunk/CHANGES.txt
zookeeper/trunk/src/c/configure.ac
zookeeper/trunk/src/c/include/winconfig.h
zookeeper/trunk/src/c/include/zookeeper_version.h
Modified: zookeeper/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/zookeeper/trunk/CHANGES.txt?rev=1605517&r1=1605516&r2=1605517&view=diff
==============================================================================
--- zookeeper/trunk/CHANGES.txt (original)
+++ zookeeper/trunk/CHANGES.txt Wed Jun 25 17:35:22 2014
@@ -942,6 +942,9 @@ IMPROVEMENTS:
ZOOKEEPER-1746. AsyncCallback.*Callback don't have any Javadoc
(Hongchao Deng via phunt)
+ ZOOKEEPER-1938. bump version in the C library as we prepare for
+ 3.5.0 release (Raul Gutierrez Segales via phunt)
+
headers
Release 3.4.0 -
Modified: zookeeper/trunk/src/c/configure.ac
URL: http://svn.apache.org/viewvc/zookeeper/trunk/src/c/configure.ac?rev=1605517&r1=1605516&r2=1605517&view=diff
==============================================================================
--- zookeeper/trunk/src/c/configure.ac (original)
+++ zookeeper/trunk/src/c/configure.ac Wed Jun 25 17:35:22 2014
@@ -3,7 +3,7 @@
AC_PREREQ(2.59)
-AC_INIT([zookeeper C client],3.4.0,[user@zookeeper.apache.org],[zookeeper])
+AC_INIT([zookeeper C client],3.5.0,[user@zookeeper.apache.org],[zookeeper])
AC_CONFIG_SRCDIR([src/zookeeper.c])
# Save initial CFLAGS and CXXFLAGS values before AC_PROG_CC and AC_PROG_CXX
Modified: zookeeper/trunk/src/c/include/winconfig.h
URL: http://svn.apache.org/viewvc/zookeeper/trunk/src/c/include/winconfig.h?rev=1605517&r1=1605516&r2=1605517&view=diff
==============================================================================
--- zookeeper/trunk/src/c/include/winconfig.h (original)
+++ zookeeper/trunk/src/c/include/winconfig.h Wed Jun 25 17:35:22 2014
@@ -117,7 +117,7 @@
#define PACKAGE_NAME "zookeeper C client"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "zookeeper C client 3.4.0 win32"
+#define PACKAGE_STRING "zookeeper C client 3.5.0 win32"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "c-client-src"
@@ -126,7 +126,7 @@
#define PACKAGE_URL ""
/* Define to the version of this package. */
-#define PACKAGE_VERSION "3.4.0"
+#define PACKAGE_VERSION "3.5.0"
/* poll() second argument type */
#define POLL_NFDS_TYPE
@@ -138,7 +138,7 @@
#define TIME_WITH_SYS_TIME
/* Version number of package */
-#define VERSION "3.4.0"
+#define VERSION "3.5.0"
/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */
Modified: zookeeper/trunk/src/c/include/zookeeper_version.h
URL: http://svn.apache.org/viewvc/zookeeper/trunk/src/c/include/zookeeper_version.h?rev=1605517&r1=1605516&r2=1605517&view=diff
==============================================================================
--- zookeeper/trunk/src/c/include/zookeeper_version.h (original)
+++ zookeeper/trunk/src/c/include/zookeeper_version.h Wed Jun 25 17:35:22 2014
@@ -23,7 +23,7 @@ extern "C" {
#endif
#define ZOO_MAJOR_VERSION 3
-#define ZOO_MINOR_VERSION 4
+#define ZOO_MINOR_VERSION 5
#define ZOO_PATCH_VERSION 0
#ifdef __cplusplus
|