You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by di...@apache.org on 2020/02/14 03:20:15 UTC

[rocketmq-client-cpp] branch master updated: feat(release): update version to prepare to release v2 (#240)

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

dinglei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-client-cpp.git


The following commit(s) were added to refs/heads/master by this push:
     new e824b71  feat(release): update version to prepare to release v2 (#240)
e824b71 is described below

commit e824b71ab3db209f425eb537ef9a73178b99e075
Author: dinglei <li...@163.com>
AuthorDate: Fri Feb 14 11:20:10 2020 +0800

    feat(release): update version to prepare to release v2 (#240)
---
 README.md                                        | 2 --
 dep/rocketmq_amd64/DEBIAN/control                | 2 +-
 distribution/deploy.sh                           | 2 +-
 rpm/rocketmq_x64/CENTOS/rocketmq-client-cpp.spec | 2 +-
 src/common/DefaultMQClient.cpp                   | 4 ++--
 5 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md
index 9c337a4..ddfd8d4 100644
--- a/README.md
+++ b/README.md
@@ -3,8 +3,6 @@
 [![TravisCI](https://travis-ci.org/apache/rocketmq-client-cpp.svg)](https://travis-ci.org/apache/rocketmq-client-cpp)
 [![CodeCov](https://codecov.io/gh/apache/rocketmq-client-cpp/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/rocketmq-client-cpp)
 [![GitHub release](https://img.shields.io/badge/release-download-default.svg)](https://github.com/apache/rocketmq-client-cpp/releases)
-[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/apache/rocketmq-client-cpp.svg)](http://isitmaintained.com/project/apache/rocketmq-client-cpp "Average time to resolve an issue")
-[![Percentage of issues still open](http://isitmaintained.com/badge/open/apache/rocketmq-client-cpp.svg)](http://isitmaintained.com/project/apache/rocketmq-client-cpp "Percentage of issues still open")
 ![Twitter Follow](https://img.shields.io/twitter/follow/ApacheRocketMQ?style=social)
 
 RocketMQ-Client-CPP is the C/C++ client of Apache RocketMQ, a distributed messaging and streaming platform with low latency, high performance and reliability, trillion-level capacity and flexible scalability.
diff --git a/dep/rocketmq_amd64/DEBIAN/control b/dep/rocketmq_amd64/DEBIAN/control
index b1fe918..5a3cb50 100644
--- a/dep/rocketmq_amd64/DEBIAN/control
+++ b/dep/rocketmq_amd64/DEBIAN/control
@@ -1,5 +1,5 @@
 Package: RocketMQ
-Version: 1.2.5
+Version: 2.0.0
 Architecture: amd64
 Essential: no
 Priority: optional
diff --git a/distribution/deploy.sh b/distribution/deploy.sh
index 2ac7bbd..c213d9a 100755
--- a/distribution/deploy.sh
+++ b/distribution/deploy.sh
@@ -16,7 +16,7 @@
 # limitations under the License.
 
 
-VERSION="1.2.5"
+VERSION="2.0.0"
 PKG_NAME="rocketmq-client-cpp"
 CWD_DIR=$(cd "$(dirname "$0")"; pwd)
 DEPLOY_BUILD_HOME=${CWD_DIR}/${PKG_NAME}
diff --git a/rpm/rocketmq_x64/CENTOS/rocketmq-client-cpp.spec b/rpm/rocketmq_x64/CENTOS/rocketmq-client-cpp.spec
index 9dab148..4046d85 100644
--- a/rpm/rocketmq_x64/CENTOS/rocketmq-client-cpp.spec
+++ b/rpm/rocketmq_x64/CENTOS/rocketmq-client-cpp.spec
@@ -2,7 +2,7 @@
 Summary: A C++ Client of Apache RocketMQ
 
 Name: rocketmq-client-cpp
-Version: 1.2.5
+Version: 2.0.0
 Release: centos
 Group: Apache
 License: APLv2
diff --git a/src/common/DefaultMQClient.cpp b/src/common/DefaultMQClient.cpp
index fd4d7cb..8e29760 100644
--- a/src/common/DefaultMQClient.cpp
+++ b/src/common/DefaultMQClient.cpp
@@ -25,8 +25,8 @@
 
 namespace rocketmq {
 
-#define ROCKETMQCPP_VERSION "1.2.5"
-#define BUILD_DATE "02-12-2020"
+#define ROCKETMQCPP_VERSION "2.0.0"
+#define BUILD_DATE "02-14-2020"
 // display version: strings bin/librocketmq.so |grep VERSION
 const char* rocketmq_build_time = "VERSION: " ROCKETMQCPP_VERSION ", BUILD DATE: " BUILD_DATE " ";