[pypy-commit] cffi cffi-1.0: Bump the version to 1.0.0b2

arigo noreply at buildbot.pypy.org
Thu May 7 12:38:31 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: cffi-1.0
Changeset: r1919:12236376f370
Date: 2015-05-07 12:39 +0200
http://bitbucket.org/cffi/cffi/changeset/12236376f370/

Log:	Bump the version to 1.0.0b2

diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c
--- a/c/_cffi_backend.c
+++ b/c/_cffi_backend.c
@@ -6011,7 +6011,7 @@
     if (v == NULL || PyModule_AddObject(m, "_C_API", v) < 0)
         INITERROR;
 
-    v = PyText_FromString("1.0.0b1");
+    v = PyText_FromString("1.0.0b2");
     if (v == NULL || PyModule_AddObject(m, "__version__", v) < 0)
         INITERROR;
 
diff --git a/c/test_c.py b/c/test_c.py
--- a/c/test_c.py
+++ b/c/test_c.py
@@ -3342,4 +3342,4 @@
 
 def test_version():
     # this test is here mostly for PyPy
-    assert __version__ == "1.0.0b1"
+    assert __version__ == "1.0.0b2"
diff --git a/cffi/__init__.py b/cffi/__init__.py
--- a/cffi/__init__.py
+++ b/cffi/__init__.py
@@ -4,8 +4,8 @@
 from .api import FFI, CDefError, FFIError
 from .ffiplatform import VerificationError, VerificationMissing
 
-__version__ = "1.0.0b1"
-__version_info__ = (1, 0, 0, "beta", 1)
+__version__ = "1.0.0b2"
+__version_info__ = (1, 0, 0, "beta", 2)
 
 # The verifier module file names are based on the CRC32 of a string that
 # contains the following version number.  It may be older than __version__
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -142,7 +142,7 @@
 
 `Mailing list <https://groups.google.com/forum/#!forum/python-cffi>`_
 """,
-        version='1.0.0b1',
+        version='1.0.0b2',
         packages=['cffi', '_cffi1'],
         package_data={'_cffi1': ['_cffi_include.h', 'parse_c_type.h']},
         zip_safe=False,


More information about the pypy-commit mailing list