Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 22541 invoked from network); 11 Jul 2007 18:10:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Jul 2007 18:10:42 -0000 Received: (qmail 40653 invoked by uid 500); 11 Jul 2007 18:10:45 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 40600 invoked by uid 500); 11 Jul 2007 18:10:45 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 40591 invoked by uid 99); 11 Jul 2007 18:10:45 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jul 2007 11:10:45 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jul 2007 11:10:41 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 4909C1A981A; Wed, 11 Jul 2007 11:10:21 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r555351 - in /activemq/activemq-cpp/tags/cms-1.1: RELEASE_NOTES.txt configure.ac src/main/Makefile.am Date: Wed, 11 Jul 2007 18:10:20 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070711181021.4909C1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Wed Jul 11 11:10:17 2007 New Revision: 555351 URL: http://svn.apache.org/viewvc?view=rev&rev=555351 Log: Preparing for CMS 1.1 release Modified: activemq/activemq-cpp/tags/cms-1.1/RELEASE_NOTES.txt activemq/activemq-cpp/tags/cms-1.1/configure.ac activemq/activemq-cpp/tags/cms-1.1/src/main/Makefile.am Modified: activemq/activemq-cpp/tags/cms-1.1/RELEASE_NOTES.txt URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/tags/cms-1.1/RELEASE_NOTES.txt?view=diff&rev=555351&r1=555350&r2=555351 ============================================================================== --- activemq/activemq-cpp/tags/cms-1.1/RELEASE_NOTES.txt (original) +++ activemq/activemq-cpp/tags/cms-1.1/RELEASE_NOTES.txt Wed Jul 11 11:10:17 2007 @@ -1,13 +1,24 @@ ========================================================================= +== Release Notes for CMS 1.1 == +========================================================================= + +== Changes since 1.0 == + +This version adds a new interface CMSProperties, which hides the +implementation of the class used for Properties operations. Also the +headers are now tagged to support building of shared libraries. Also +some minor JMS consistency changes have been made. + +========================================================================= == Release Notes for CMS 1.0 == ========================================================================= == Overview == This is the first official release of the C++ Messaging Service (CMS) -API. It is designed to closely mirror the JMS API. CMS has evolved -under the activemq-cpp project and is now being extracted as it's own -tag and source bundle so that it may be used independently of -activemq-cpp. The hope is that this will encourage more C++ -implementations and eventually the adoption of a standard API for +API. It is designed to closely mirror the JMS API. CMS has evolved +under the activemq-cpp project and is now being extracted as it's own +tag and source bundle so that it may be used independently of +activemq-cpp. The hope is that this will encourage more C++ +implementations and eventually the adoption of a standard API for messaging from C++ applications. Modified: activemq/activemq-cpp/tags/cms-1.1/configure.ac URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/tags/cms-1.1/configure.ac?view=diff&rev=555351&r1=555350&r2=555351 ============================================================================== --- activemq/activemq-cpp/tags/cms-1.1/configure.ac (original) +++ activemq/activemq-cpp/tags/cms-1.1/configure.ac Wed Jul 11 11:10:17 2007 @@ -5,9 +5,9 @@ # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at -# +# # http://www.apache.org/licenses/LICENSE-2.0 -# +# # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -26,7 +26,7 @@ ## Define the Version variables ## ----------------------------------------------- CMS_LIBRARY_NAME=cms -CMS_VERSION=1.0 +CMS_VERSION=1.1 CMS_LIBRARY_VERSION=0:0:0 CMS_RELEASE=0.0 CMS_API_VERSION=${CMS_VERSION} Modified: activemq/activemq-cpp/tags/cms-1.1/src/main/Makefile.am URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/tags/cms-1.1/src/main/Makefile.am?view=diff&rev=555351&r1=555350&r2=555351 ============================================================================== --- activemq/activemq-cpp/tags/cms-1.1/src/main/Makefile.am (original) +++ activemq/activemq-cpp/tags/cms-1.1/src/main/Makefile.am Wed Jul 11 11:10:17 2007 @@ -27,6 +27,8 @@ cms/Topic.h \ cms/BytesMessage.h \ cms/CMSException.h \ + cms/CMSProperties.h \ + cms/Config.h \ cms/Session.h \ cms/Startable.h \ cms/Closeable.h \