Skip to content

Commit e824b71

Browse files
authored
feat(release): update version to prepare to release v2 (#240)
1 parent 820006e commit e824b71

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
[![TravisCI](https://travis-ci.org/apache/rocketmq-client-cpp.svg)](https://travis-ci.org/apache/rocketmq-client-cpp)
44
[![CodeCov](https://codecov.io/gh/apache/rocketmq-client-cpp/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/rocketmq-client-cpp)
55
[![GitHub release](https://img.shields.io/badge/release-download-default.svg)](https://github.com/apache/rocketmq-client-cpp/releases)
6-
[![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")
7-
[![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")
86
![Twitter Follow](https://img.shields.io/twitter/follow/ApacheRocketMQ?style=social)
97

108
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.

dep/rocketmq_amd64/DEBIAN/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: RocketMQ
2-
Version: 1.2.5
2+
Version: 2.0.0
33
Architecture: amd64
44
Essential: no
55
Priority: optional

distribution/deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# limitations under the License.
1717

1818

19-
VERSION="1.2.5"
19+
VERSION="2.0.0"
2020
PKG_NAME="rocketmq-client-cpp"
2121
CWD_DIR=$(cd "$(dirname "$0")"; pwd)
2222
DEPLOY_BUILD_HOME=${CWD_DIR}/${PKG_NAME}

rpm/rocketmq_x64/CENTOS/rocketmq-client-cpp.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Summary: A C++ Client of Apache RocketMQ
33

44
Name: rocketmq-client-cpp
5-
Version: 1.2.5
5+
Version: 2.0.0
66
Release: centos
77
Group: Apache
88
License: APLv2

src/common/DefaultMQClient.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525

2626
namespace rocketmq {
2727

28-
#define ROCKETMQCPP_VERSION "1.2.5"
29-
#define BUILD_DATE "02-12-2020"
28+
#define ROCKETMQCPP_VERSION "2.0.0"
29+
#define BUILD_DATE "02-14-2020"
3030
// display version: strings bin/librocketmq.so |grep VERSION
3131
const char* rocketmq_build_time = "VERSION: " ROCKETMQCPP_VERSION ", BUILD DATE: " BUILD_DATE " ";
3232

0 commit comments

Comments
 (0)