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 61bdf27..c37685a 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 <jfarrell@apache.org> 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 45bb5b2..ffa4dab 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 03015ef..74b07c5 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 @@
 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 91c4466..87877e6 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 3155714..4635819 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 7498bab..bf92f1b 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 7583c97..6eb4f68 100644
--- a/lib/rb/Rakefile
+++ b/lib/rb/Rakefile
@@ -82,7 +82,7 @@
     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