Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
774d630b
Commit
774d630b
authored
Feb 27, 2013
by
Feng Xiao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update version number to 2.5.0
Change-Id: Ie5114bde3574c6cb0c67d5852b4658287561a0d3
parent
a36f1b43
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
CHANGES.txt
CHANGES.txt
+2
-2
configure.ac
configure.ac
+1
-1
pom.xml
java/pom.xml
+1
-1
setup.py
python/setup.py
+1
-1
No files found.
CHANGES.txt
View file @
774d630b
201
2-09-19
version 2.5.0:
201
3-02-27
version 2.5.0:
General
* New notion "import public" that allows a proto file to forward the content
...
...
@@ -32,7 +32,7 @@
comments for corresponding classes and data members.
* Added Parser to parse directly into messages without a Builder. For
example,
Foo foo = Foo.
getParser()
.ParseFrom(input);
Foo foo = Foo.
PARSER
.ParseFrom(input);
Using Parser is ~25% faster than using Builder to parse messages.
* Added getters/setters to access the underlying ByteString of a string field
directly.
...
...
configure.ac
View file @
774d630b
...
...
@@ -12,7 +12,7 @@ AC_PREREQ(2.59)
# 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
# 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])
...
...
java/pom.xml
View file @
774d630b
...
...
@@ -10,7 +10,7 @@
</parent>
<groupId>
com.google.protobuf
</groupId>
<artifactId>
protobuf-java
</artifactId>
<version>
2.5.0
-pre
</version>
<version>
2.5.0
</version>
<packaging>
bundle
</packaging>
<name>
Protocol Buffer Java API
</name>
<description>
...
...
python/setup.py
View file @
774d630b
...
...
@@ -156,7 +156,7 @@ if __name__ == '__main__':
libraries
=
[
"protobuf"
]))
setup
(
name
=
'protobuf'
,
version
=
'2.5.0
-pre
'
,
version
=
'2.5.0'
,
packages
=
[
'google'
],
namespace_packages
=
[
'google'
],
test_suite
=
'setup.MakeTestSuite'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment