Skip to content

Commit

Permalink
Bump version to 1.15.0rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
nitzmahone committed Oct 5, 2021
1 parent 243a09d commit 5be9d25
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ in the doc/ subdirectory.
Download
--------

[Download page](https://bitbucket.org/cffi/cffi/downloads)
[Download page](https://foss.heptapod.net/pypy/cffi/-/tags)

Contact
-------
Expand Down
2 changes: 1 addition & 1 deletion c/_cffi_backend.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include <Python.h>
#include "structmember.h"

#define CFFI_VERSION "1.15.0rc1"
#define CFFI_VERSION "1.15.0rc2"

#ifdef MS_WIN32
#include <windows.h>
Expand Down
2 changes: 1 addition & 1 deletion c/test_c.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def _testfunc(num):
# ____________________________________________________________

import sys
assert __version__ == "1.15.0rc1", ("This test_c.py file is for testing a version"
assert __version__ == "1.15.0rc2", ("This test_c.py file is for testing a version"
" of cffi that differs from the one that we"
" get from 'import _cffi_backend'")
if sys.version_info < (3,):
Expand Down
4 changes: 2 additions & 2 deletions cffi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
from .error import CDefError, FFIError, VerificationError, VerificationMissing
from .error import PkgConfigError

__version__ = "1.15.0rc1"
__version_info__ = (1, 15, 0, 'rc1')
__version__ = "1.15.0rc2"
__version_info__ = (1, 15, 0, 'rc2')

# 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__
Expand Down
2 changes: 1 addition & 1 deletion cffi/_embedding.h
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ static int _cffi_initialize_python(void)

if (f != NULL && f != Py_None) {
PyFile_WriteString("\nFrom: " _CFFI_MODULE_NAME
"\ncompiled with cffi version: 1.15.0rc1"
"\ncompiled with cffi version: 1.15.0rc2"
"\n_cffi_backend module: ", f);
modules = PyImport_GetModuleDict();
mod = PyDict_GetItemString(modules, "_cffi_backend");
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
# The short X.Y version.
version = '1.15'
# The full version, including alpha/beta/rc tags.
release = '1.15.0rc1'
release = '1.15.0rc2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
8 changes: 4 additions & 4 deletions doc/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ Download and Installation:

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

* Checksums of the "source" package version 1.15.0rc1:
* Checksums of the "source" package version 1.15.0rc2:

- MD5: a940f767eaf54dddf174226982ec1a8e
- MD5: ...

- SHA1: aee6f9ba045551a1f7b2660930e28fb8a9a8ba4d
- SHA1: ...

- SHA256: 8a2b1001ece83aabd818d334659a97cf3c0158501442f20fee7305c8ac3059cb
- SHA256: ...

* Or grab the most current version from the `Heptapod page`_:
``hg clone https://foss.heptapod.net/pypy/cffi``
Expand Down
9 changes: 9 additions & 0 deletions doc/source/whatsnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
What's New
======================

v1.15.0rc2
==========

* Fixed MANIFEST.in to include missing file for Windows arm64 support

* Fixed Linux wheel build to use gcc default ISA for libffi

* Updated setup.py Python trove specifiers to currently-tested Python versions

v1.15.0rc1
==========

Expand Down
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def has_ext_modules(self):
`Mailing list <https://groups.google.com/forum/#!forum/python-cffi>`_
""",
version='1.15.0rc1',
version='1.15.0rc2',
packages=['cffi'] if cpython else [],
package_data={'cffi': ['_cffi_include.h', 'parse_c_type.h',
'_embedding.h', '_cffi_errors.h']}
Expand Down Expand Up @@ -224,14 +224,13 @@ def has_ext_modules(self):
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit 5be9d25

Please sign in to comment.