Author: jgomes
Date: Wed Mar 12 23:17:14 2014
New Revision: 1576995

URL: http://svn.apache.org/r1576995
Log:
Add IDisposable interface to IDestination.
Fixes [AMQNET-473]. (See https://issues.apache.org/jira/browse/AMQNET-473)
Set the NMS version dependency to 1.7.0 for trunk development.

Modified:
    activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/nant.build
    
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/Destination.cs

Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/nant.build
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/nant.build?rev=1576995&r1=1576994&r2=1576995&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/nant.build (original)
+++ activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/nant.build Wed Mar 12 
23:17:14 2014
@@ -22,7 +22,7 @@
     <property name="basedir" value="${project::get-base-directory()}" />
     <property name="project.name" value="Apache.NMS.Stomp" />
     <property name="project.group" value="org.apache.activemq" />
-    <property name="project.version" value="1.6.0" 
unless="${property::exists('project.version')}" />
+    <property name="project.version" value="1.7.0" 
unless="${property::exists('project.version')}" />
     <property name="project.release.type" value="SNAPSHOT" 
unless="${property::exists('project.release.type')}" />
     <property name="project.short_description" value="Apache NMS for Stomp 
Class Library" />
     <property name="project.description" value="Apache NMS for Stomp Class 
Library (.Net Messaging Library Implementation): An implementation of the NMS 
API for Stomp" />
@@ -46,7 +46,7 @@
         <!-- Property grouping for 'vendor.apache.org' -->
         <property name="vendor.apache.org.name" value="Apache.NMS" />
         <property name="vendor.apache.org.group" value="org.apache.activemq" />
-        <property name="vendor.apache.org.version" value="1.6.0" />
+        <property name="vendor.apache.org.version" value="1.7.0" />
         <if test="${current.build.framework == 'mono-2.0' or 
current.build.framework == 'mono-4.0'}">
             <property name="vendor.apache.org.filenames" 
value="Apache.NMS.dll,Apache.NMS.dll.mdb,Apache.NMS.Test.dll,Apache.NMS.Test.dll.mdb"
 />
         </if>

Modified: 
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/Destination.cs
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/Destination.cs?rev=1576995&r1=1576994&r2=1576995&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/Destination.cs
 (original)
+++ 
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/Destination.cs
 Wed Mar 12 23:17:14 2014
@@ -67,6 +67,10 @@ namespace Apache.NMS.Stomp.Commands
             SetPhysicalName(name);
         }
 
+        public void Dispose()
+        {
+        }
+
         public bool IsTopic
         {
             get


Reply via email to