Author: tabish
Date: Mon Jun 25 15:33:58 2012
New Revision: 1353595
URL: http://svn.apache.org/viewvc?rev=1353595&view=rev
Log:
Prepare for next release cycle
Modified:
activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/RELEASE_NOTES.txt
activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/activemq-cpp.spec
activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/configure.ac
activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/src/main/activemq/core/ActiveMQConnectionMetaData.cpp
Modified:
activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/RELEASE_NOTES.txt
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/RELEASE_NOTES.txt?rev=1353595&r1=1353594&r2=1353595&view=diff
==============================================================================
---
activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/RELEASE_NOTES.txt
(original)
+++
activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/RELEASE_NOTES.txt
Mon Jun 25 15:33:58 2012
@@ -1,4 +1,15 @@
=========================================================================
+== Release Notes for ActiveMQ CPP 3.4.4 ==
+=========================================================================
+
+Bug
+
+ [AMQCPP-404] - compilation errors on Windows because of Unicode set in
project file
+ [AMQCPP-407] - Application crashes after stopping message broker
+ [AMQCPP-408] - CMS opens a large number of threads
+ [AMQCPP-410] - prefetchSize=0 is ignored when set via PrefetchPolicy
+
+=========================================================================
== Release Notes for ActiveMQ CPP 3.4.3 ==
=========================================================================
Modified:
activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/activemq-cpp.spec
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/activemq-cpp.spec?rev=1353595&r1=1353594&r2=1353595&view=diff
==============================================================================
---
activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/activemq-cpp.spec
(original)
+++
activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/activemq-cpp.spec
Mon Jun 25 15:33:58 2012
@@ -1,5 +1,5 @@
Name: activemq-cpp
-Version: 3.4.1
+Version: 3.4.4
Release: 1%{?dist}
Summary: C++ Implementation of a JMS style Messaging Client
Modified:
activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/configure.ac
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/configure.ac?rev=1353595&r1=1353594&r2=1353595&view=diff
==============================================================================
--- activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/configure.ac
(original)
+++ activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/configure.ac
Mon Jun 25 15:33:58 2012
@@ -20,7 +20,7 @@ AC_PREREQ(2.61)
## --------------------------------
## Initialization macros.
## --------------------------------
-AC_INIT(activemq-cpp, 3.4.3, [email protected])
+AC_INIT(activemq-cpp, 3.4.4, [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=4
-ACTIVEMQ_PATCH_VERSION=3
+ACTIVEMQ_PATCH_VERSION=4
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=14:3:0
+ACTIVEMQ_LIBRARY_VERSION=14:4:0
AC_SUBST(ACTIVEMQ_LIBRARY_NAME)
AC_SUBST(ACTIVEMQ_VERSION)
Modified:
activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/src/main/activemq/core/ActiveMQConnectionMetaData.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/src/main/activemq/core/ActiveMQConnectionMetaData.cpp?rev=1353595&r1=1353594&r2=1353595&view=diff
==============================================================================
---
activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/src/main/activemq/core/ActiveMQConnectionMetaData.cpp
(original)
+++
activemq/activemq-cpp/branches/activemq-cpp-3.4.x/activemq-cpp/src/main/activemq/core/ActiveMQConnectionMetaData.cpp
Mon Jun 25 15:33:58 2012
@@ -51,7 +51,7 @@ std::string ActiveMQConnectionMetaData::
////////////////////////////////////////////////////////////////////////////////
std::string ActiveMQConnectionMetaData::getProviderVersion() const {
- return "3.4.3";
+ return "3.4.4";
}
////////////////////////////////////////////////////////////////////////////////