[pypy-commit] cffi default: Upgrade the version number. (One test in test_version is known to fail)

arigo noreply at buildbot.pypy.org
Fri Feb 28 10:51:39 CET 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r1468:8aa5648077c6
Date: 2014-02-28 10:51 +0100
http://bitbucket.org/cffi/cffi/changeset/8aa5648077c6/

Log:	Upgrade the version number. (One test in test_version is known to
	fail)

diff --git a/cffi/__init__.py b/cffi/__init__.py
--- a/cffi/__init__.py
+++ b/cffi/__init__.py
@@ -4,5 +4,5 @@
 from .api import FFI, CDefError, FFIError
 from .ffiplatform import VerificationError, VerificationMissing
 
-__version__ = "0.8.1"
-__version_info__ = (0, 8, 1)
+__version__ = "0.8.2"
+__version_info__ = (0, 8, 2)
diff --git a/doc/source/conf.py b/doc/source/conf.py
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -47,7 +47,7 @@
 # The short X.Y version.
 version = '0.8'
 # The full version, including alpha/beta/rc tags.
-release = '0.8.1'
+release = '0.8.2'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -112,7 +112,7 @@
 
 `Mailing list <https://groups.google.com/forum/#!forum/python-cffi>`_
     """,
-    version='0.8.1',
+    version='0.8.2',
     packages=['cffi'],
     zip_safe=False,
 
diff --git a/testing/test_version.py b/testing/test_version.py
--- a/testing/test_version.py
+++ b/testing/test_version.py
@@ -9,7 +9,8 @@
     '0.4.2': '0.4',     # did not change
     '0.7.1': '0.7',     # did not change
     '0.7.2': '0.7',     # did not change
-    '0.8.1': '0.8',     # did not change
+    '0.8.1': '0.8',     # did not change (essentially)
+    '0.8.2': '0.8',     # did not change
     }
 
 def test_version():


More information about the pypy-commit mailing list