Preparing for CMS 1.1 release

git-svn-id: https://svn.apache.org/repos/asf/activemq/activemq-cpp/tags/cms-1.1@555351 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt
index 0f56917..143dada 100644
--- a/RELEASE_NOTES.txt
+++ b/RELEASE_NOTES.txt
@@ -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.
\ No newline at end of file
diff --git a/configure.ac b/configure.ac
index 943dd68..f83712a5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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}
diff --git a/src/main/Makefile.am b/src/main/Makefile.am
index 608f300..a57166d 100644
--- a/src/main/Makefile.am
+++ b/src/main/Makefile.am
@@ -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 \