Commit 774d630b authored by Feng Xiao's avatar Feng Xiao

Update version number to 2.5.0

Change-Id: Ie5114bde3574c6cb0c67d5852b4658287561a0d3
parent a36f1b43
2012-09-19 version 2.5.0: 2013-02-27 version 2.5.0:
General General
* New notion "import public" that allows a proto file to forward the content * New notion "import public" that allows a proto file to forward the content
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
comments for corresponding classes and data members. comments for corresponding classes and data members.
* Added Parser to parse directly into messages without a Builder. For * Added Parser to parse directly into messages without a Builder. For
example, example,
Foo foo = Foo.getParser().ParseFrom(input); Foo foo = Foo.PARSER.ParseFrom(input);
Using Parser is ~25% faster than using Builder to parse messages. Using Parser is ~25% faster than using Builder to parse messages.
* Added getters/setters to access the underlying ByteString of a string field * Added getters/setters to access the underlying ByteString of a string field
directly. directly.
......
...@@ -12,7 +12,7 @@ AC_PREREQ(2.59) ...@@ -12,7 +12,7 @@ AC_PREREQ(2.59)
# In the SVN trunk, the version should always be the next anticipated release # In the SVN trunk, the version should always be the next anticipated release
# version with the "-pre" suffix. (We used to use "-SNAPSHOT" but this pushed # version with the "-pre" suffix. (We used to use "-SNAPSHOT" but this pushed
# the size of one file name in the dist tarfile over the 99-char limit.) # the size of one file name in the dist tarfile over the 99-char limit.)
AC_INIT([Protocol Buffers],[2.5.0-pre],[protobuf@googlegroups.com],[protobuf]) AC_INIT([Protocol Buffers],[2.5.0],[protobuf@googlegroups.com],[protobuf])
AM_MAINTAINER_MODE([enable]) AM_MAINTAINER_MODE([enable])
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
</parent> </parent>
<groupId>com.google.protobuf</groupId> <groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId> <artifactId>protobuf-java</artifactId>
<version>2.5.0-pre</version> <version>2.5.0</version>
<packaging>bundle</packaging> <packaging>bundle</packaging>
<name>Protocol Buffer Java API</name> <name>Protocol Buffer Java API</name>
<description> <description>
......
...@@ -156,7 +156,7 @@ if __name__ == '__main__': ...@@ -156,7 +156,7 @@ if __name__ == '__main__':
libraries = [ "protobuf" ])) libraries = [ "protobuf" ]))
setup(name = 'protobuf', setup(name = 'protobuf',
version = '2.5.0-pre', version = '2.5.0',
packages = [ 'google' ], packages = [ 'google' ],
namespace_packages = [ 'google' ], namespace_packages = [ 'google' ],
test_suite = 'setup.MakeTestSuite', test_suite = 'setup.MakeTestSuite',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment