From: Jake Farrell Date: Thu, 11 Aug 2011 19:09:13 +0000 (+0000) Subject: Updating version number to 0.7.0 for clients X-Git-Tag: 0.7.0~2 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=be81e01f285684ec831fb30e121117335f2b2d2f;p=common%2Fthrift.git Updating version number to 0.7.0 for clients git-svn-id: https://svn.apache.org/repos/asf/thrift/branches/0.7.x@1156746 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/contrib/debian/changelog b/contrib/debian/changelog index 61bdf27c..c37685a4 100644 --- a/contrib/debian/changelog +++ b/contrib/debian/changelog @@ -1,3 +1,9 @@ +thrift (0.7.0) stable; urgency=low + + * update to 0.7.0 + + -- Jake Farrell Tue, 10 Aug 2011 17:01:53 -0500 + thrift (0.7.0-dev1) stable; urgency=low * added glib * fix location of libthrift.jar diff --git a/lib/hs/Thrift.cabal b/lib/hs/Thrift.cabal index 45bb5b21..ffa4dab1 100644 --- a/lib/hs/Thrift.cabal +++ b/lib/hs/Thrift.cabal @@ -18,7 +18,7 @@ -- Name: thrift -Version: 0.7.0-dev +Version: 0.7.0 Cabal-Version: >= 1.4 License: OtherLicense Category: Foreign diff --git a/lib/java/build.properties b/lib/java/build.properties index 03015efa..74b07c57 100644 --- a/lib/java/build.properties +++ b/lib/java/build.properties @@ -1,4 +1,5 @@ thrift.version=0.7.0 +release=true thrift.groupid=org.apache.thrift # Jar Versions @@ -19,9 +20,6 @@ license=http://www.apache.org/licenses/LICENSE-2.0.txt" maven-repository-url=https://repository.apache.org/service/local/staging/deploy/maven2 maven-repository-id=apache.releases.https -thrift.version=0.7.0 -thrift.groupid=org.apache.thrift - # Jar Versions mvn.ant.task.version=2.1.3 diff --git a/lib/js/thrift.js b/lib/js/thrift.js index 91c44666..87877e6f 100644 --- a/lib/js/thrift.js +++ b/lib/js/thrift.js @@ -17,7 +17,7 @@ * under the License. */ var Thrift = { - Version: '0.7.0-dev', + Version: '0.7.0' /* Description: 'JavaScript bindings for the Apache Thrift RPC system', License: 'http://www.apache.org/licenses/LICENSE-2.0', diff --git a/lib/perl/lib/Thrift.pm b/lib/perl/lib/Thrift.pm index 3155714e..46358197 100644 --- a/lib/perl/lib/Thrift.pm +++ b/lib/perl/lib/Thrift.pm @@ -17,7 +17,7 @@ # under the License. # -our $VERSION = '0.7.0-dev'; +our $VERSION = '0.7.0'; require 5.6.0; use strict; diff --git a/lib/py/setup.py b/lib/py/setup.py index 7498bab0..bf92f1b4 100644 --- a/lib/py/setup.py +++ b/lib/py/setup.py @@ -9,7 +9,7 @@ # "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 +# 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 @@ -22,23 +22,23 @@ from distutils.core import setup, Extension fastbinarymod = Extension('thrift.protocol.fastbinary', - sources = ['src/protocol/fastbinary.c'], - ) + sources = ['src/protocol/fastbinary.c'], + ) setup(name = 'Thrift', - version = '0.7.0-dev', - description = 'Python bindings for the Apache Thrift RPC system', - author = ['Thrift Developers'], - author_email = ['dev@thrift.apache.org'], - url = 'http://thrift.apache.org', - license = 'Apache License 2.0', - packages = [ - 'thrift', - 'thrift.protocol', - 'thrift.transport', - 'thrift.server', - ], - package_dir = {'thrift' : 'src'}, - ext_modules = [fastbinarymod], - ) + version = '0.7.0', + description = 'Python bindings for the Apache Thrift RPC system', + author = ['Thrift Developers'], + author_email = ['dev@thrift.apache.org'], + url = 'http://thrift.apache.org', + license = 'Apache License 2.0', + packages = [ + 'thrift', + 'thrift.protocol', + 'thrift.transport', + 'thrift.server', + ], + package_dir = {'thrift' : 'src'}, + ext_modules = [fastbinarymod], + ) diff --git a/lib/rb/Rakefile b/lib/rb/Rakefile index 7583c973..6eb4f689 100644 --- a/lib/rb/Rakefile +++ b/lib/rb/Rakefile @@ -82,7 +82,7 @@ begin p.summary = "Ruby bindings for the Apache Thrift RPC system" p.url = "http://thrift.apache.org" p.include_rakefile = true - p.version = "0.7.0dev" + p.version = "0.7.0" p.rubygems_version = ">= 1.2.0" end