Skip to content

Commit c613cfe

Browse files
committed
dump version to 1.15.1
1 parent c873b43 commit c613cfe

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

c/_cffi_backend.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <Python.h>
33
#include "structmember.h"
44

5-
#define CFFI_VERSION "1.15.0"
5+
#define CFFI_VERSION "1.15.1"
66

77
#ifdef MS_WIN32
88
#include <windows.h>

c/test_c.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def _testfunc(num):
1717
# ____________________________________________________________
1818

1919
import sys
20-
assert __version__ == "1.15.0", ("This test_c.py file is for testing a version"
20+
assert __version__ == "1.15.1", ("This test_c.py file is for testing a version"
2121
" of cffi that differs from the one that we"
2222
" get from 'import _cffi_backend'")
2323
if sys.version_info < (3,):

cffi/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
from .error import CDefError, FFIError, VerificationError, VerificationMissing
66
from .error import PkgConfigError
77

8-
__version__ = "1.15.0"
9-
__version_info__ = (1, 15, 0)
8+
__version__ = "1.15.1"
9+
__version_info__ = (1, 15, 1)
1010

1111
# The verifier module file names are based on the CRC32 of a string that
1212
# contains the following version number. It may be older than __version__

cffi/_embedding.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ static int _cffi_initialize_python(void)
225225

226226
if (f != NULL && f != Py_None) {
227227
PyFile_WriteString("\nFrom: " _CFFI_MODULE_NAME
228-
"\ncompiled with cffi version: 1.15.0"
228+
"\ncompiled with cffi version: 1.15.1"
229229
"\n_cffi_backend module: ", f);
230230
modules = PyImport_GetModuleDict();
231231
mod = PyDict_GetItemString(modules, "_cffi_backend");

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
# The short X.Y version.
4848
version = '1.15'
4949
# The full version, including alpha/beta/rc tags.
50-
release = '1.15.0'
50+
release = '1.15.1'
5151

5252
# The language for content autogenerated by Sphinx. Refer to documentation
5353
# for a list of supported languages.

doc/source/installation.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ Download and Installation:
5252

5353
* https://pypi.python.org/pypi/cffi
5454

55-
* Checksums of the "source" package version 1.15.0:
55+
* Checksums of the "source" package version 1.15.1:
5656

57-
- MD5: f3a3f26cd3335fc597479c9475da0a0b
57+
- MD5: ...
5858

59-
- SHA1: 9c51c29e35510adf7f94542e1f8e05611930b07b
59+
- SHA1: ...
6060

61-
- SHA256: 920f0d66a896c2d99f0adbb391f990a84091179542c205fa53ce5787aff87954
61+
- SHA256: ...
6262

6363
* Or grab the most current version from the `Heptapod page`_:
6464
``hg clone https://foss.heptapod.net/pypy/cffi``

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def has_ext_modules(self):
186186
187187
`Mailing list <https://groups.google.com/forum/#!forum/python-cffi>`_
188188
""",
189-
version='1.15.0',
189+
version='1.15.1',
190190
packages=['cffi'] if cpython else [],
191191
package_data={'cffi': ['_cffi_include.h', 'parse_c_type.h',
192192
'_embedding.h', '_cffi_errors.h']}

0 commit comments

Comments
 (0)