aboutsummaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorxiaofeng@google.com <xiaofeng@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2013-02-28 06:12:28 +0000
committerxiaofeng@google.com <xiaofeng@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2013-02-28 06:12:28 +0000
commit2c9392f8dd2c080ac936ba0eca7ece69998e4a6d (patch)
tree443f269e32ba965204a73a1d4c1b53ca911cd234 /CHANGES.txt
parenta36f1b43e738a7f5e40ab11b621803d684c3d65a (diff)
downloadprotobuf-2c9392f8dd2c080ac936ba0eca7ece69998e4a6d.tar.gz
protobuf-2c9392f8dd2c080ac936ba0eca7ece69998e4a6d.tar.bz2
protobuf-2c9392f8dd2c080ac936ba0eca7ece69998e4a6d.zip
Update version number in trunk
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index a21e956c..5eefe9a8 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,4 +1,4 @@
-2012-09-19 version 2.5.0:
+2013-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.