[pypy-commit] cffi default: Prepare for the version 0.4 (not released yet!).

arigo noreply at buildbot.pypy.org
Mon Sep 24 21:13:02 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r969:121f1e7ff2cd
Date: 2012-09-24 21:12 +0200
http://bitbucket.org/cffi/cffi/changeset/121f1e7ff2cd/

Log:	Prepare for the version 0.4 (not released yet!).

diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c
--- a/c/_cffi_backend.c
+++ b/c/_cffi_backend.c
@@ -4723,7 +4723,7 @@
     if (v == NULL || PyModule_AddObject(m, "_C_API", v) < 0)
         INITERROR;
 
-    v = PyText_FromString("0.3");
+    v = PyText_FromString("0.4");
     if (v == NULL || PyModule_AddObject(m, "__version__", v) < 0)
         INITERROR;
 
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.3"
-__version_info__ = (0, 3)
+__version__ = "0.4"
+__version_info__ = (0, 4)
diff --git a/doc/source/conf.py b/doc/source/conf.py
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -45,9 +45,9 @@
 # built documents.
 #
 # The short X.Y version.
-version = '0.3'
+version = '0.4'
 # The full version, including alpha/beta/rc tags.
-release = '0.3'
+release = '0.4'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
diff --git a/doc/source/index.rst b/doc/source/index.rst
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -89,11 +89,11 @@
 
 Download and Installation:
 
-* http://pypi.python.org/packages/source/c/cffi/cffi-0.3.tar.gz
+* http://pypi.python.org/packages/source/c/cffi/cffi-0.4.tar.gz
 
-   - MD5: 25dbc7b6182c64d08adeb6077bfa2743
+   - MD5: FILE NOT AVAILABLE YET!
 
-   - SHA: 922680f1aeb4392ab715cbe572fdc071cdbc4a35
+   - SHA: FILE NOT AVAILABLE YET!
 
 * Or get it from the `Bitbucket page`_:
   ``hg clone https://bitbucket.org/cffi/cffi``
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -81,7 +81,7 @@
   setup(
     name='cffi',
     description='Foreign Function Interface for Python calling C code.',
-    version='0.3',
+    version='0.4',
     packages=['cffi'],
     zip_safe=False,
 


More information about the pypy-commit mailing list