File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 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
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.
Original file line number Diff line number Diff 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
1717AM_MAINTAINER_MODE([enable])
1818
Original file line number Diff line number Diff line change 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>
Original file line number Diff line number Diff 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',
You can’t perform that action at this time.
0 commit comments