Explorar el Código

ZOOKEEPER-1938. bump version in the C library as we prepare for 3.5.0 release (Raul Gutierrez Segales via phunt)

git-svn-id: https://svn.apache.org/repos/asf/zookeeper/trunk@1605517 13f79535-47bb-0310-9956-ffa450edef68
Patrick D. Hunt hace 11 años
padre
commit
bb6e381532
Se han modificado 4 ficheros con 8 adiciones y 5 borrados
  1. 3 0
      CHANGES.txt
  2. 1 1
      src/c/configure.ac
  3. 3 3
      src/c/include/winconfig.h
  4. 1 1
      src/c/include/zookeeper_version.h

+ 3 - 0
CHANGES.txt

@@ -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 - 

+ 1 - 1
src/c/configure.ac

@@ -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

+ 3 - 3
src/c/include/winconfig.h

@@ -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 */

+ 1 - 1
src/c/include/zookeeper_version.h

@@ -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