You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by ro...@apache.org on 2010/10/22 13:20:26 UTC

svn commit: r1026299 - in /incubator/thrift/trunk: Makefile.am lib/csharp/ThriftMSBuildTask/Properties/AssemblyInfo.cs lib/hs/Thrift.cabal lib/java/ivy.xml lib/perl/lib/Thrift.pm lib/py/setup.py lib/rb/Rakefile

Author: roger
Date: Fri Oct 22 11:20:25 2010
New Revision: 1026299

URL: http://svn.apache.org/viewvc?rev=1026299&view=rev
Log:
THRIFT-6 update Version Info for several languages, add print-version to Makefile.am


Modified:
    incubator/thrift/trunk/Makefile.am
    incubator/thrift/trunk/lib/csharp/ThriftMSBuildTask/Properties/AssemblyInfo.cs
    incubator/thrift/trunk/lib/hs/Thrift.cabal
    incubator/thrift/trunk/lib/java/ivy.xml
    incubator/thrift/trunk/lib/perl/lib/Thrift.pm
    incubator/thrift/trunk/lib/py/setup.py
    incubator/thrift/trunk/lib/rb/Rakefile

Modified: incubator/thrift/trunk/Makefile.am
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/Makefile.am?rev=1026299&r1=1026298&r2=1026299&view=diff
==============================================================================
--- incubator/thrift/trunk/Makefile.am (original)
+++ incubator/thrift/trunk/Makefile.am Fri Oct 22 11:20:25 2010
@@ -24,5 +24,8 @@ SUBDIRS = compiler/cpp lib test
 dist-hook:
 	find $(distdir) -name '.[a-zA-Z0-9]*' | xargs rm -rf
 
+print-version:
+	@echo $(VERSION)
+
 EXTRA_DIST = doc tutorial contrib \
              CONTRIBUTORS LICENSE CHANGES DISCLAIMER NOTICE

Modified: incubator/thrift/trunk/lib/csharp/ThriftMSBuildTask/Properties/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/csharp/ThriftMSBuildTask/Properties/AssemblyInfo.cs?rev=1026299&r1=1026298&r2=1026299&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/csharp/ThriftMSBuildTask/Properties/AssemblyInfo.cs (original)
+++ incubator/thrift/trunk/lib/csharp/ThriftMSBuildTask/Properties/AssemblyInfo.cs Fri Oct 22 11:20:25 2010
@@ -28,14 +28,15 @@ using System.Runtime.InteropServices;
 // General Information about an assembly is controlled through the following
 // set of attributes. Change these attribute values to modify the information
 // associated with an assembly.
-[assembly: AssemblyTitle("ThriftMSBuildTask")]
-[assembly: AssemblyDescription("")]
+[assembly: AssemblyTitle("Thrift")]
+[assembly: AssemblyDescription("C# bindings for the Apache Thrift RPC system")]
 [assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("ThriftMSBuildTask")]
-[assembly: AssemblyCopyright("Copyright © 2009 The Apache Software Foundation")]
+[assembly: AssemblyCompany("The Apache Software Foundation")]
+[assembly: AssemblyProduct("Thrift")]
+[assembly: AssemblyCopyright("The Apache Software Foundation")]
 [assembly: AssemblyTrademark("")]
 [assembly: AssemblyCulture("")]
+//@TODO where to put License information?
 
 // Setting ComVisible to false makes the types in this assembly not visible
 // to COM components.  If you need to access a type in this assembly from
@@ -55,5 +56,5 @@ using System.Runtime.InteropServices;
 // You can specify all the values or you can default the Build and Revision Numbers
 // by using the '*' as shown below:
 // [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyVersion("0.6.0.*")]
 [assembly: AssemblyFileVersion("1.0.0.0")]

Modified: incubator/thrift/trunk/lib/hs/Thrift.cabal
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/hs/Thrift.cabal?rev=1026299&r1=1026298&r2=1026299&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/hs/Thrift.cabal (original)
+++ incubator/thrift/trunk/lib/hs/Thrift.cabal Fri Oct 22 11:20:25 2010
@@ -18,13 +18,13 @@
 --
 
 Name:           thrift
-Version:        0.2.0
+Version:        0.6.0-dev
 Cabal-Version:  >= 1.4
-License:        OtherLicense
+License:        Apache License 2.0
 Category:       Foreign
 Build-Type:     Simple
-Synopsis:       Apache Thrift bindings
-Maintainer:     christian.lavoie@gmail.com
+Synopsis:       Haskell bindings for the Apache Thrift RPC system
+Maintainer:     thrift-dev@incubator.apache.org
 License-File:   LICENSE
 
 Description:

Modified: incubator/thrift/trunk/lib/java/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/java/ivy.xml?rev=1026299&r1=1026298&r2=1026299&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/java/ivy.xml (original)
+++ incubator/thrift/trunk/lib/java/ivy.xml Fri Oct 22 11:20:25 2010
@@ -15,11 +15,13 @@
    limitations under the License.
 -->
 <ivy-module version="1.0">
-    <info organisation="org.apache.thrift" module="libthrift" revision="0.3.0-20100116" >
-      <license name="apache" />
-      <ivyauthor name="Thrift Team" url="thrift-dev@incubator.apache.org" />
+    <info organisation="org.apache.thrift" module="libthrift" revision="0.6.0-dev" >
+      <license name="Apache License 2.0" url="http://www.apache.org/licenses/LICENSE-2.0" />
+      <ivyauthor name="Thrift Developers" url="thrift-dev@incubator.apache.org" />
       <repository name="apache repository" url="http://incubator.apache.org/thrift/" />
-      <description homepage="http://incubator.apache.org/thrift/" />
+      <description homepage="http://incubator.apache.org/thrift/">
+      Java bindings for the Apache Thrift RPC system
+      </description>
     </info>
     <configurations defaultconfmapping="compile">
       <conf name="compile" />

Modified: incubator/thrift/trunk/lib/perl/lib/Thrift.pm
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/perl/lib/Thrift.pm?rev=1026299&r1=1026298&r2=1026299&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/perl/lib/Thrift.pm (original)
+++ incubator/thrift/trunk/lib/perl/lib/Thrift.pm Fri Oct 22 11:20:25 2010
@@ -17,7 +17,7 @@
 # under the License.
 #
 
-our $VERSION = '0.1';
+our $VERSION = '0.6.0-dev';
 
 require 5.6.0;
 use strict;

Modified: incubator/thrift/trunk/lib/py/setup.py
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/py/setup.py?rev=1026299&r1=1026298&r2=1026299&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/py/setup.py (original)
+++ incubator/thrift/trunk/lib/py/setup.py Fri Oct 22 11:20:25 2010
@@ -26,8 +26,8 @@ fastbinarymod = Extension('thrift.protoc
                           )
 
 setup(name = 'Thrift',
-      version = '0.1',
-      description = 'Thrift Python Libraries',
+      version = '0.6.0-dev',
+      description = 'Python bindings for the Apache Thrift RPC system',
       author = ['Thrift Developers'],
       author_email = ['thrift-dev@incubator.apache.org'],
       url = 'http://incubator.apache.org/thrift/',

Modified: incubator/thrift/trunk/lib/rb/Rakefile
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/rb/Rakefile?rev=1026299&r1=1026298&r2=1026299&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/rb/Rakefile (original)
+++ incubator/thrift/trunk/lib/rb/Rakefile Fri Oct 22 11:20:25 2010
@@ -77,12 +77,12 @@ begin
   require 'echoe'
 
   Echoe.new('thrift') do |p|
-    p.author = ['Kevin Ballard', 'Kevin Clark', 'Mark Slee']
-    p.email = ['kevin@sb.org', 'kevin.clark@gmail.com', 'mcslee@facebook.com']
-    p.summary = "Ruby libraries for Thrift (a language-agnostic RPC system)"
+    p.author = ['Thrift Developers']
+    p.email = ['thrift-dev@incubator.apache.org']
+    p.summary = "Ruby bindings for the Apache Thrift RPC system"
     p.url = "http://incubator.apache.org/thrift/"
     p.include_rakefile = true
-    p.version = "0.6.0"
+    p.version = "0.6.0-dev"
     p.rubygems_version = ">= 1.2.0"
   end