Repository: activemq-cpp Updated Branches: refs/heads/3.9.x f0ecb22d8 -> a72ec4967
Prepare for next patch release, v3.9.1 Project: http://git-wip-us.apache.org/repos/asf/activemq-cpp/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-cpp/commit/a72ec496 Tree: http://git-wip-us.apache.org/repos/asf/activemq-cpp/tree/a72ec496 Diff: http://git-wip-us.apache.org/repos/asf/activemq-cpp/diff/a72ec496 Branch: refs/heads/3.9.x Commit: a72ec4967fc88b10041812d2e1ad3a73e462d900 Parents: f0ecb22 Author: Timothy Bish <[email protected]> Authored: Mon Nov 30 14:50:48 2015 -0500 Committer: Timothy Bish <[email protected]> Committed: Mon Nov 30 14:50:48 2015 -0500 ---------------------------------------------------------------------- activemq-cpp/RELEASE_NOTES.txt | 14 ++++++++++++++ activemq-cpp/activemq-cpp.spec | 2 +- activemq-cpp/configure.ac | 6 +++--- .../main/activemq/core/ActiveMQConnectionMetaData.cpp | 4 ++-- 4 files changed, 20 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/a72ec496/activemq-cpp/RELEASE_NOTES.txt ---------------------------------------------------------------------- diff --git a/activemq-cpp/RELEASE_NOTES.txt b/activemq-cpp/RELEASE_NOTES.txt index 7004ff7..e624506 100644 --- a/activemq-cpp/RELEASE_NOTES.txt +++ b/activemq-cpp/RELEASE_NOTES.txt @@ -1,4 +1,18 @@ ========================================================================= +== Release Notes for ActiveMQ CPP 3.9.1 == +========================================================================= + +Bug + + [AMQCPP-585] - Date::toString() return wrong date string. + [AMQCPP-587] - ActiveMQ CPP (CMS) integration unit tests leads to client segmentation fault when executed against Artemis + [AMQCPP-589] - NPE when acknowledge called on message in some cases + +Improvement + + [AMQCPP-588] - Always set a rollback cause on exception thrown in onMessage + +========================================================================= == Release Notes for ActiveMQ CPP 3.9.0 == ========================================================================= http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/a72ec496/activemq-cpp/activemq-cpp.spec ---------------------------------------------------------------------- diff --git a/activemq-cpp/activemq-cpp.spec b/activemq-cpp/activemq-cpp.spec index aa7b59e..1ecc18b 100644 --- a/activemq-cpp/activemq-cpp.spec +++ b/activemq-cpp/activemq-cpp.spec @@ -1,5 +1,5 @@ Name: activemq-cpp -Version: 3.9.0 +Version: 3.9.1 Release: 1%{?dist} Summary: C++ Implementation of a JMS style Messaging Client http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/a72ec496/activemq-cpp/configure.ac ---------------------------------------------------------------------- diff --git a/activemq-cpp/configure.ac b/activemq-cpp/configure.ac index 8ed6b69..f49fb2d 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.9.0, [email protected]) +AC_INIT(activemq-cpp, 3.9.1, [email protected]) AC_CONFIG_AUX_DIR(config) AC_CONFIG_SRCDIR(src/main/activemq/core/ActiveMQConnection.cpp) AC_CONFIG_MACRO_DIR([m4]) @@ -31,7 +31,7 @@ AC_CONFIG_MACRO_DIR([m4]) ACTIVEMQ_LIBRARY_NAME=activemq-cpp ACTIVEMQ_MAJOR_VERSION=3 ACTIVEMQ_MINOR_VERSION=9 -ACTIVEMQ_PATCH_VERSION=0 +ACTIVEMQ_PATCH_VERSION=1 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=19:0:0 +ACTIVEMQ_LIBRARY_VERSION=19:1:0 AC_SUBST(ACTIVEMQ_LIBRARY_NAME) AC_SUBST(ACTIVEMQ_VERSION) http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/a72ec496/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 76417c3..905b300 100644 --- a/activemq-cpp/src/main/activemq/core/ActiveMQConnectionMetaData.cpp +++ b/activemq-cpp/src/main/activemq/core/ActiveMQConnectionMetaData.cpp @@ -51,7 +51,7 @@ std::string ActiveMQConnectionMetaData::getCMSProviderName() const { //////////////////////////////////////////////////////////////////////////////// std::string ActiveMQConnectionMetaData::getProviderVersion() const { - return "3.9.0"; + return "3.9.1"; } //////////////////////////////////////////////////////////////////////////////// @@ -66,7 +66,7 @@ int ActiveMQConnectionMetaData::getProviderMinorVersion() const { //////////////////////////////////////////////////////////////////////////////// int ActiveMQConnectionMetaData::getProviderPatchVersion() const { - return 0; + return 1; } ////////////////////////////////////////////////////////////////////////////////
