You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zookeeper.apache.org by sy...@apache.org on 2022/05/18 13:58:02 UTC

[zookeeper] branch branch-3.5 updated: Prepare for the next release: update the version to 3.5.11-SNAPSHOT

This is an automated email from the ASF dual-hosted git repository.

symat pushed a commit to branch branch-3.5
in repository https://gitbox.apache.org/repos/asf/zookeeper.git


The following commit(s) were added to refs/heads/branch-3.5 by this push:
     new 3e937c073 Prepare for the next release: update the version to 3.5.11-SNAPSHOT
3e937c073 is described below

commit 3e937c073d22cec62380b90174d4669faf1f3f4d
Author: Mate Szalay-Beko <ms...@cloudera.com>
AuthorDate: Wed May 18 15:57:06 2022 +0200

    Prepare for the next release: update the version to 3.5.11-SNAPSHOT
---
 pom.xml                                                         | 2 +-
 zookeeper-assembly/pom.xml                                      | 2 +-
 zookeeper-client/pom.xml                                        | 2 +-
 zookeeper-client/zookeeper-client-c/CMakeLists.txt              | 2 +-
 zookeeper-client/zookeeper-client-c/configure.ac                | 2 +-
 zookeeper-client/zookeeper-client-c/include/zookeeper_version.h | 2 +-
 zookeeper-client/zookeeper-client-c/pom.xml                     | 2 +-
 zookeeper-contrib/pom.xml                                       | 2 +-
 zookeeper-contrib/zookeeper-contrib-loggraph/pom.xml            | 2 +-
 zookeeper-contrib/zookeeper-contrib-rest/pom.xml                | 2 +-
 zookeeper-contrib/zookeeper-contrib-zooinspector/pom.xml        | 2 +-
 zookeeper-docs/pom.xml                                          | 2 +-
 zookeeper-jute/pom.xml                                          | 2 +-
 zookeeper-recipes/pom.xml                                       | 2 +-
 zookeeper-recipes/zookeeper-recipes-election/pom.xml            | 2 +-
 zookeeper-recipes/zookeeper-recipes-lock/pom.xml                | 2 +-
 zookeeper-recipes/zookeeper-recipes-queue/pom.xml               | 2 +-
 zookeeper-server/pom.xml                                        | 2 +-
 18 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/pom.xml b/pom.xml
index 70bb76477..ec9ba7cc1 100755
--- a/pom.xml
+++ b/pom.xml
@@ -30,7 +30,7 @@
   <groupId>org.apache.zookeeper</groupId>
   <artifactId>parent</artifactId>
   <packaging>pom</packaging>
-  <version>3.5.10-SNAPSHOT</version>
+  <version>3.5.11-SNAPSHOT</version>
   <name>Apache ZooKeeper</name>
   <description>
     ZooKeeper is a centralized service for maintaining configuration information, naming,
diff --git a/zookeeper-assembly/pom.xml b/zookeeper-assembly/pom.xml
index b343925db..bcd33677c 100755
--- a/zookeeper-assembly/pom.xml
+++ b/zookeeper-assembly/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>parent</artifactId>
-    <version>3.5.10-SNAPSHOT</version>
+    <version>3.5.11-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
diff --git a/zookeeper-client/pom.xml b/zookeeper-client/pom.xml
index cd1b6822f..6d86e1633 100755
--- a/zookeeper-client/pom.xml
+++ b/zookeeper-client/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>parent</artifactId>
-    <version>3.5.10-SNAPSHOT</version>
+    <version>3.5.11-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
diff --git a/zookeeper-client/zookeeper-client-c/CMakeLists.txt b/zookeeper-client/zookeeper-client-c/CMakeLists.txt
index 3f73cc814..1b0b58c61 100644
--- a/zookeeper-client/zookeeper-client-c/CMakeLists.txt
+++ b/zookeeper-client/zookeeper-client-c/CMakeLists.txt
@@ -16,7 +16,7 @@
 
 cmake_minimum_required(VERSION 3.5)
 
-project(zookeeper VERSION 3.5.10)
+project(zookeeper VERSION 3.5.11)
 set(email user@zookeeper.apache.org)
 set(description "zookeeper C client")
 
diff --git a/zookeeper-client/zookeeper-client-c/configure.ac b/zookeeper-client/zookeeper-client-c/configure.ac
index 3a233216c..c46ca39d4 100644
--- a/zookeeper-client/zookeeper-client-c/configure.ac
+++ b/zookeeper-client/zookeeper-client-c/configure.ac
@@ -3,7 +3,7 @@
 
 AC_PREREQ(2.59)
 
-AC_INIT([zookeeper C client],3.5.10,[user@zookeeper.apache.org],[zookeeper])
+AC_INIT([zookeeper C client],3.5.11,[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
diff --git a/zookeeper-client/zookeeper-client-c/include/zookeeper_version.h b/zookeeper-client/zookeeper-client-c/include/zookeeper_version.h
index 1d338bcb4..d36421a12 100644
--- a/zookeeper-client/zookeeper-client-c/include/zookeeper_version.h
+++ b/zookeeper-client/zookeeper-client-c/include/zookeeper_version.h
@@ -24,7 +24,7 @@ extern "C" {
 
 #define ZOO_MAJOR_VERSION 3
 #define ZOO_MINOR_VERSION 5
-#define ZOO_PATCH_VERSION 9
+#define ZOO_PATCH_VERSION 11
 
 #ifdef __cplusplus
 }
diff --git a/zookeeper-client/zookeeper-client-c/pom.xml b/zookeeper-client/zookeeper-client-c/pom.xml
index 9171bb09c..71ce2e752 100755
--- a/zookeeper-client/zookeeper-client-c/pom.xml
+++ b/zookeeper-client/zookeeper-client-c/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>zookeeper-client</artifactId>
-    <version>3.5.10-SNAPSHOT</version>
+    <version>3.5.11-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
diff --git a/zookeeper-contrib/pom.xml b/zookeeper-contrib/pom.xml
index 0b9d4aba5..9ee77fba8 100755
--- a/zookeeper-contrib/pom.xml
+++ b/zookeeper-contrib/pom.xml
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>parent</artifactId>
-    <version>3.5.10-SNAPSHOT</version>
+    <version>3.5.11-SNAPSHOT</version>
   </parent>
 
   <artifactId>zookeeper-contrib</artifactId>
diff --git a/zookeeper-contrib/zookeeper-contrib-loggraph/pom.xml b/zookeeper-contrib/zookeeper-contrib-loggraph/pom.xml
index 69fad563a..e707a9de4 100755
--- a/zookeeper-contrib/zookeeper-contrib-loggraph/pom.xml
+++ b/zookeeper-contrib/zookeeper-contrib-loggraph/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>zookeeper-contrib</artifactId>
-    <version>3.5.10-SNAPSHOT</version>
+    <version>3.5.11-SNAPSHOT</version>
   </parent>
 
   <artifactId>zookeeper-contrib-loggraph</artifactId>
diff --git a/zookeeper-contrib/zookeeper-contrib-rest/pom.xml b/zookeeper-contrib/zookeeper-contrib-rest/pom.xml
index a882ac712..4319c7875 100755
--- a/zookeeper-contrib/zookeeper-contrib-rest/pom.xml
+++ b/zookeeper-contrib/zookeeper-contrib-rest/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>zookeeper-contrib</artifactId>
-    <version>3.5.10-SNAPSHOT</version>
+    <version>3.5.11-SNAPSHOT</version>
   </parent>
 
   <artifactId>zookeeper-contrib-rest</artifactId>
diff --git a/zookeeper-contrib/zookeeper-contrib-zooinspector/pom.xml b/zookeeper-contrib/zookeeper-contrib-zooinspector/pom.xml
index 84a0afec6..af45ec5f5 100755
--- a/zookeeper-contrib/zookeeper-contrib-zooinspector/pom.xml
+++ b/zookeeper-contrib/zookeeper-contrib-zooinspector/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>zookeeper-contrib</artifactId>
-    <version>3.5.10-SNAPSHOT</version>
+    <version>3.5.11-SNAPSHOT</version>
   </parent>
 
   <artifactId>zookeeper-contrib-zooinspector</artifactId>
diff --git a/zookeeper-docs/pom.xml b/zookeeper-docs/pom.xml
index 52e5dddeb..532b111a1 100644
--- a/zookeeper-docs/pom.xml
+++ b/zookeeper-docs/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.zookeeper</groupId>
         <artifactId>parent</artifactId>
-        <version>3.5.10-SNAPSHOT</version>
+        <version>3.5.11-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/zookeeper-jute/pom.xml b/zookeeper-jute/pom.xml
index e9a58e62f..af7f86dd0 100755
--- a/zookeeper-jute/pom.xml
+++ b/zookeeper-jute/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>parent</artifactId>
-    <version>3.5.10-SNAPSHOT</version>
+    <version>3.5.11-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>
 
diff --git a/zookeeper-recipes/pom.xml b/zookeeper-recipes/pom.xml
index e11c7d3ad..210aad69f 100755
--- a/zookeeper-recipes/pom.xml
+++ b/zookeeper-recipes/pom.xml
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>parent</artifactId>
-    <version>3.5.10-SNAPSHOT</version>
+    <version>3.5.11-SNAPSHOT</version>
   </parent>
 
   <artifactId>zookeeper-recipes</artifactId>
diff --git a/zookeeper-recipes/zookeeper-recipes-election/pom.xml b/zookeeper-recipes/zookeeper-recipes-election/pom.xml
index 65cc57e37..b4f587543 100755
--- a/zookeeper-recipes/zookeeper-recipes-election/pom.xml
+++ b/zookeeper-recipes/zookeeper-recipes-election/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>zookeeper-recipes</artifactId>
-    <version>3.5.10-SNAPSHOT</version>
+    <version>3.5.11-SNAPSHOT</version>
   </parent>
 
   <artifactId>zookeeper-recipes-election</artifactId>
diff --git a/zookeeper-recipes/zookeeper-recipes-lock/pom.xml b/zookeeper-recipes/zookeeper-recipes-lock/pom.xml
index 6a34b8a79..ac8113d2b 100755
--- a/zookeeper-recipes/zookeeper-recipes-lock/pom.xml
+++ b/zookeeper-recipes/zookeeper-recipes-lock/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>zookeeper-recipes</artifactId>
-    <version>3.5.10-SNAPSHOT</version>
+    <version>3.5.11-SNAPSHOT</version>
   </parent>
 
   <artifactId>zookeeper-recipes-lock</artifactId>
diff --git a/zookeeper-recipes/zookeeper-recipes-queue/pom.xml b/zookeeper-recipes/zookeeper-recipes-queue/pom.xml
index da09f85ae..87f60b8d1 100755
--- a/zookeeper-recipes/zookeeper-recipes-queue/pom.xml
+++ b/zookeeper-recipes/zookeeper-recipes-queue/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>zookeeper-recipes</artifactId>
-    <version>3.5.10-SNAPSHOT</version>
+    <version>3.5.11-SNAPSHOT</version>
   </parent>
 
   <artifactId>zookeeper-recipes-queue</artifactId>
diff --git a/zookeeper-server/pom.xml b/zookeeper-server/pom.xml
index ee86bbc82..1db15e8e3 100755
--- a/zookeeper-server/pom.xml
+++ b/zookeeper-server/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.zookeeper</groupId>
     <artifactId>parent</artifactId>
-    <version>3.5.10-SNAPSHOT</version>
+    <version>3.5.11-SNAPSHOT</version>
     <relativePath>..</relativePath>
   </parent>