Updated Branches: refs/heads/trunk c6229d6ed -> 22b2b7570
Update code and scripts for 3.9.0 series Project: http://git-wip-us.apache.org/repos/asf/activemq-cpp/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-cpp/commit/22b2b757 Tree: http://git-wip-us.apache.org/repos/asf/activemq-cpp/tree/22b2b757 Diff: http://git-wip-us.apache.org/repos/asf/activemq-cpp/diff/22b2b757 Branch: refs/heads/trunk Commit: 22b2b75705e313b5230142feac5ffbe648de5668 Parents: c6229d6 Author: Timothy Bish <[email protected]> Authored: Thu Sep 5 16:34:33 2013 -0400 Committer: Timothy Bish <[email protected]> Committed: Thu Sep 5 16:35:10 2013 -0400 ---------------------------------------------------------------------- activemq-cpp/RELEASE_NOTES.txt | 5 +++++ activemq-cpp/activemq-cpp.spec | 2 +- activemq-cpp/configure.ac | 6 +++--- .../src/main/activemq/core/ActiveMQConnectionMetaData.cpp | 8 ++++---- 4 files changed, 13 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/22b2b757/activemq-cpp/RELEASE_NOTES.txt ---------------------------------------------------------------------- diff --git a/activemq-cpp/RELEASE_NOTES.txt b/activemq-cpp/RELEASE_NOTES.txt index b433d7e..bc18f92 100644 --- a/activemq-cpp/RELEASE_NOTES.txt +++ b/activemq-cpp/RELEASE_NOTES.txt @@ -1,4 +1,9 @@ ========================================================================= +== Release Notes for ActiveMQ CPP 3.9.0 == +========================================================================= + + +========================================================================= == Release Notes for ActiveMQ CPP 3.8.0 == ========================================================================= http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/22b2b757/activemq-cpp/activemq-cpp.spec ---------------------------------------------------------------------- diff --git a/activemq-cpp/activemq-cpp.spec b/activemq-cpp/activemq-cpp.spec index 4f7266c..aa7b59e 100644 --- a/activemq-cpp/activemq-cpp.spec +++ b/activemq-cpp/activemq-cpp.spec @@ -1,5 +1,5 @@ Name: activemq-cpp -Version: 3.8.0 +Version: 3.9.0 Release: 1%{?dist} Summary: C++ Implementation of a JMS style Messaging Client http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/22b2b757/activemq-cpp/configure.ac ---------------------------------------------------------------------- diff --git a/activemq-cpp/configure.ac b/activemq-cpp/configure.ac index 7b3bf9e..8ed6b69 100644 --- a/activemq-cpp/configure.ac +++ b/activemq-cpp/configure.ac @@ -20,7 +20,7 @@ AC_PREREQ(2.61) ## -------------------------------- ## Initialization macros. ## -------------------------------- -AC_INIT(activemq-cpp, 3.8.0, [email protected]) +AC_INIT(activemq-cpp, 3.9.0, [email protected]) AC_CONFIG_AUX_DIR(config) AC_CONFIG_SRCDIR(src/main/activemq/core/ActiveMQConnection.cpp) AC_CONFIG_MACRO_DIR([m4]) @@ -30,7 +30,7 @@ AC_CONFIG_MACRO_DIR([m4]) ## ------------------------------------------------------------ ACTIVEMQ_LIBRARY_NAME=activemq-cpp ACTIVEMQ_MAJOR_VERSION=3 -ACTIVEMQ_MINOR_VERSION=8 +ACTIVEMQ_MINOR_VERSION=9 ACTIVEMQ_PATCH_VERSION=0 ACTIVEMQ_VERSION=${ACTIVEMQ_MAJOR_VERSION}.${ACTIVEMQ_MINOR_VERSION}.${ACTIVEMQ_PATCH_VERSION} ACTIVEMQ_API_VERSION=${ACTIVEMQ_VERSION} @@ -75,7 +75,7 @@ AC_SUBST(CMSAPI_VERSION) ## 3. Programs may need to be changed, recompiled, relinked in order to use the new version. Bump ## current, set revision and age to 0. ## -ACTIVEMQ_LIBRARY_VERSION=18:0:0 +ACTIVEMQ_LIBRARY_VERSION=19:0:0 AC_SUBST(ACTIVEMQ_LIBRARY_NAME) AC_SUBST(ACTIVEMQ_VERSION) http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/22b2b757/activemq-cpp/src/main/activemq/core/ActiveMQConnectionMetaData.cpp ---------------------------------------------------------------------- diff --git a/activemq-cpp/src/main/activemq/core/ActiveMQConnectionMetaData.cpp b/activemq-cpp/src/main/activemq/core/ActiveMQConnectionMetaData.cpp index 5555685..76417c3 100644 --- a/activemq-cpp/src/main/activemq/core/ActiveMQConnectionMetaData.cpp +++ b/activemq-cpp/src/main/activemq/core/ActiveMQConnectionMetaData.cpp @@ -31,7 +31,7 @@ ActiveMQConnectionMetaData::~ActiveMQConnectionMetaData() { //////////////////////////////////////////////////////////////////////////////// std::string ActiveMQConnectionMetaData::getCMSVersion() const { - return "3.1"; + return "3.2"; } //////////////////////////////////////////////////////////////////////////////// @@ -41,7 +41,7 @@ int ActiveMQConnectionMetaData::getCMSMajorVersion() const { //////////////////////////////////////////////////////////////////////////////// int ActiveMQConnectionMetaData::getCMSMinorVersion() const { - return 1; + return 2; } //////////////////////////////////////////////////////////////////////////////// @@ -51,7 +51,7 @@ std::string ActiveMQConnectionMetaData::getCMSProviderName() const { //////////////////////////////////////////////////////////////////////////////// std::string ActiveMQConnectionMetaData::getProviderVersion() const { - return "3.8.0"; + return "3.9.0"; } //////////////////////////////////////////////////////////////////////////////// @@ -61,7 +61,7 @@ int ActiveMQConnectionMetaData::getProviderMajorVersion() const { //////////////////////////////////////////////////////////////////////////////// int ActiveMQConnectionMetaData::getProviderMinorVersion() const { - return 8; + return 9; } ////////////////////////////////////////////////////////////////////////////////
