Updated Branches: refs/heads/3.8.x fdcec1ec8 -> 9895470eb
Update sources to fix bad v3.8.2 release bundle. Project: http://git-wip-us.apache.org/repos/asf/activemq-cpp/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-cpp/commit/9895470e Tree: http://git-wip-us.apache.org/repos/asf/activemq-cpp/tree/9895470e Diff: http://git-wip-us.apache.org/repos/asf/activemq-cpp/diff/9895470e Branch: refs/heads/3.8.x Commit: 9895470eb0ae19e1c565c628d1f8c8268b7f7159 Parents: fdcec1e Author: Timothy Bish <[email protected]> Authored: Wed Dec 4 14:09:50 2013 -0500 Committer: Timothy Bish <[email protected]> Committed: Wed Dec 4 14:09:50 2013 -0500 ---------------------------------------------------------------------- activemq-cpp-openwire-generator/pom.xml | 2 +- activemq-cpp/RELEASE_NOTES.txt | 15 ++++++++++++++- activemq-cpp/activemq-cpp.spec | 2 +- activemq-cpp/configure.ac | 6 +++--- activemq-cpp/pom.xml | 2 +- .../activemq/core/ActiveMQConnectionMetaData.cpp | 4 ++-- maven-cpptools-plugin/pom.xml | 2 +- pom.xml | 2 +- 8 files changed, 24 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/9895470e/activemq-cpp-openwire-generator/pom.xml ---------------------------------------------------------------------- diff --git a/activemq-cpp-openwire-generator/pom.xml b/activemq-cpp-openwire-generator/pom.xml index 3c8a776..2dca705 100644 --- a/activemq-cpp-openwire-generator/pom.xml +++ b/activemq-cpp-openwire-generator/pom.xml @@ -23,7 +23,7 @@ <parent> <groupId>org.apache.activemq-cpp</groupId> <artifactId>activemq-cpp-pom</artifactId> - <version>3.8.3-SNAPSHOT</version> + <version>3.8.2-SNAPSHOT</version> </parent> <artifactId>activemq-cpp-openwire-generator</artifactId> http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/9895470e/activemq-cpp/RELEASE_NOTES.txt ---------------------------------------------------------------------- diff --git a/activemq-cpp/RELEASE_NOTES.txt b/activemq-cpp/RELEASE_NOTES.txt index e95b2ce..7aaee7b 100644 --- a/activemq-cpp/RELEASE_NOTES.txt +++ b/activemq-cpp/RELEASE_NOTES.txt @@ -1,5 +1,18 @@ ========================================================================= -== Release Notes for ActiveMQ CPP 3.8.0 == +== Release Notes for ActiveMQ CPP 3.8.2 == +========================================================================= + +Bug + + [AMQCPP-514] - ActiveMQBytesMessage destruction may cause unhandled exception + [AMQCPP-515] - Stomp frame mishandled duplicate headers + [AMQCPP-516] - Don't fire transport interrupted event when no resume is possible + [AMQCPP-520] - AMQ crashes when an exception comes during the connection closure + [AMQCPP-525] - C++ client hangs when using the failover transport to connect to a network of brokers + + +========================================================================= +== Release Notes for ActiveMQ CPP 3.8.1 == ========================================================================= Bug http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/9895470e/activemq-cpp/activemq-cpp.spec ---------------------------------------------------------------------- diff --git a/activemq-cpp/activemq-cpp.spec b/activemq-cpp/activemq-cpp.spec index dee28cf..032dff0 100644 --- a/activemq-cpp/activemq-cpp.spec +++ b/activemq-cpp/activemq-cpp.spec @@ -1,5 +1,5 @@ Name: activemq-cpp -Version: 3.8.1 +Version: 3.8.2 Release: 1%{?dist} Summary: C++ Implementation of a JMS style Messaging Client http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/9895470e/activemq-cpp/configure.ac ---------------------------------------------------------------------- diff --git a/activemq-cpp/configure.ac b/activemq-cpp/configure.ac index c0546d6..d282c61 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.1, [email protected]) +AC_INIT(activemq-cpp, 3.8.2, [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=8 -ACTIVEMQ_PATCH_VERSION=1 +ACTIVEMQ_PATCH_VERSION=2 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:1:0 +ACTIVEMQ_LIBRARY_VERSION=18:2:0 AC_SUBST(ACTIVEMQ_LIBRARY_NAME) AC_SUBST(ACTIVEMQ_VERSION) http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/9895470e/activemq-cpp/pom.xml ---------------------------------------------------------------------- diff --git a/activemq-cpp/pom.xml b/activemq-cpp/pom.xml index 182dfd4..cd6cc5c 100644 --- a/activemq-cpp/pom.xml +++ b/activemq-cpp/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.activemq-cpp</groupId> <artifactId>activemq-cpp-pom</artifactId> - <version>3.8.3-SNAPSHOT</version> + <version>3.8.2-SNAPSHOT</version> </parent> <artifactId>activemq-cpp-library</artifactId> http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/9895470e/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 e58082e..93789dc 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.8.1"; + return "3.8.2"; } //////////////////////////////////////////////////////////////////////////////// @@ -66,7 +66,7 @@ int ActiveMQConnectionMetaData::getProviderMinorVersion() const { //////////////////////////////////////////////////////////////////////////////// int ActiveMQConnectionMetaData::getProviderPatchVersion() const { - return 1; + return 2; } //////////////////////////////////////////////////////////////////////////////// http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/9895470e/maven-cpptools-plugin/pom.xml ---------------------------------------------------------------------- diff --git a/maven-cpptools-plugin/pom.xml b/maven-cpptools-plugin/pom.xml index 2d7cbbe..8fe7699 100644 --- a/maven-cpptools-plugin/pom.xml +++ b/maven-cpptools-plugin/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.activemq-cpp</groupId> <artifactId>activemq-cpp-pom</artifactId> - <version>3.8.3-SNAPSHOT</version> + <version>3.8.2-SNAPSHOT</version> </parent> <artifactId>maven-cpptools-plugin</artifactId> http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/9895470e/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index a486cb6..88662b4 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ <groupId>org.apache.activemq-cpp</groupId> <artifactId>activemq-cpp-pom</artifactId> - <version>3.8.3-SNAPSHOT</version> + <version>3.8.2-SNAPSHOT</version> <packaging>pom</packaging> <name>ActiveMQ-CPP Project</name> <inceptionYear>2007</inceptionYear>
