aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authortemporal <temporal@630680e5-0e50-0410-840e-4b1c322b438d>2008-08-27 19:25:48 +0000
committertemporal <temporal@630680e5-0e50-0410-840e-4b1c322b438d>2008-08-27 19:25:48 +0000
commit742e40975aeba15cf596eefbabe26642ea74d83c (patch)
treefcf43096335b40e16d77e4fcaa158142359415e9 /python
parentdd681ad786ced133e69dc36f8cebef9b392ebab4 (diff)
downloadprotobuf-742e40975aeba15cf596eefbabe26642ea74d83c.tar.gz
protobuf-742e40975aeba15cf596eefbabe26642ea74d83c.tar.bz2
protobuf-742e40975aeba15cf596eefbabe26642ea74d83c.zip
2.0.1 release.
Diffstat (limited to 'python')
-rw-r--r--python/README.txt8
-rwxr-xr-xpython/setup.py2
2 files changed, 9 insertions, 1 deletions
diff --git a/python/README.txt b/python/README.txt
index 4f68d506..96f1a734 100644
--- a/python/README.txt
+++ b/python/README.txt
@@ -15,6 +15,14 @@ Python part of the code. In this case, you will need to obtain the
Protocol Compiler from some other source before you can use this
package.
+Development Warning
+===================
+
+The Python implementation of Protocol Buffers is not as mature as the C++
+and Java implementations. It may be more buggy, and it is known to be
+pretty slow at this time. If you would like to help fix these issues,
+join the Protocol Buffers discussion list and let us know!
+
Installation
============
diff --git a/python/setup.py b/python/setup.py
index e109ee75..638ee277 100755
--- a/python/setup.py
+++ b/python/setup.py
@@ -97,7 +97,7 @@ if __name__ == '__main__':
generate_proto("../src/google/protobuf/descriptor.proto")
setup(name = 'protobuf',
- version = '2.0.1-SNAPSHOT',
+ version = '2.0.1',
packages = [ 'google' ],
namespace_packages = [ 'google' ],
test_suite = 'setup.MakeTestSuite',