Skip to content

Commit 774d630

Browse files
committed
Update version number to 2.5.0
Change-Id: Ie5114bde3574c6cb0c67d5852b4658287561a0d3
1 parent a36f1b4 commit 774d630

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGES.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
2012-09-19 version 2.5.0:
1+
2013-02-27 version 2.5.0:
22

33
General
44
* New notion "import public" that allows a proto file to forward the content
@@ -32,7 +32,7 @@
3232
comments for corresponding classes and data members.
3333
* Added Parser to parse directly into messages without a Builder. For
3434
example,
35-
Foo foo = Foo.getParser().ParseFrom(input);
35+
Foo foo = Foo.PARSER.ParseFrom(input);
3636
Using Parser is ~25% faster than using Builder to parse messages.
3737
* Added getters/setters to access the underlying ByteString of a string field
3838
directly.

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ AC_PREREQ(2.59)
1212
# In the SVN trunk, the version should always be the next anticipated release
1313
# version with the "-pre" suffix. (We used to use "-SNAPSHOT" but this pushed
1414
# the size of one file name in the dist tarfile over the 99-char limit.)
15-
AC_INIT([Protocol Buffers],[2.5.0-pre],[[email protected]],[protobuf])
15+
AC_INIT([Protocol Buffers],[2.5.0],[[email protected]],[protobuf])
1616

1717
AM_MAINTAINER_MODE([enable])
1818

java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>com.google.protobuf</groupId>
1212
<artifactId>protobuf-java</artifactId>
13-
<version>2.5.0-pre</version>
13+
<version>2.5.0</version>
1414
<packaging>bundle</packaging>
1515
<name>Protocol Buffer Java API</name>
1616
<description>

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def run(self):
156156
libraries = [ "protobuf" ]))
157157

158158
setup(name = 'protobuf',
159-
version = '2.5.0-pre',
159+
version = '2.5.0',
160160
packages = [ 'google' ],
161161
namespace_packages = [ 'google' ],
162162
test_suite = 'setup.MakeTestSuite',

0 commit comments

Comments
 (0)