Author: Armin Rigo <[email protected]> Branch: Changeset: r1540:41a3446cfe40 Date: 2014-07-05 18:55 +0200 http://bitbucket.org/cffi/cffi/changeset/41a3446cfe40/
Log: hg merge release-0.8 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.3" -__version_info__ = (0, 8, 3) +__version__ = "0.8.4" +__version_info__ = (0, 8, 4) 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.3' +release = '0.8.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 @@ -88,13 +88,13 @@ Download and Installation: -* http://pypi.python.org/packages/source/c/cffi/cffi-0.8.3.tar.gz +* http://pypi.python.org/packages/source/c/cffi/cffi-0.8.4.tar.gz - Or grab the most current version by following the instructions below. - - MD5: ... + - MD5: 148894125d3fa696b418dc6559818f7a - - SHA: ... + - SHA: 754ad62d0868bd48f34b2a5818575493e15b5514 * 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 @@ -43,6 +43,8 @@ def ask_supports_thread(): from distutils.core import Distribution + from distutils.sysconfig import get_config_vars + get_config_vars() # workaround for a bug of distutils, e.g. on OS/X config = Distribution().get_command_obj('config') ok = config.try_compile('__thread int some_threadlocal_variable_42;') if ok: @@ -113,7 +115,7 @@ `Mailing list <https://groups.google.com/forum/#!forum/python-cffi>`_ """, - version='0.8.3', + version='0.8.4', 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 @@ -10,6 +10,7 @@ '0.7.1': '0.7', # did not change '0.7.2': '0.7', # did not change '0.8.1': '0.8', # did not change (essentially) + '0.8.4': '0.8.3', # did not change } def test_version(): _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
