Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
PyPy
cffi
Commits
9d89169b1ec9
Commit
4b196758
authored
Sep 17, 2021
by
Matt Davis
Browse files
Bump version to 1.15.0rc1
--HG-- branch : release-1.15
parent
257de8af1d9e
Changes
8
Hide whitespace changes
Inline
Side-by-side
c/_cffi_backend.c
View file @
9d89169b
...
...
@@ -2,7 +2,7 @@
#include <Python.h>
#include "structmember.h"
#define CFFI_VERSION "1.1
4.6
"
#define CFFI_VERSION "1.1
5.0rc1
"
#ifdef MS_WIN32
#include <windows.h>
...
...
c/test_c.py
View file @
9d89169b
...
...
@@ -17,7 +17,7 @@ from _cffi_backend import __version__
# ____________________________________________________________
import
sys
assert
__version__
==
"1.1
4.6
"
,
(
"This test_c.py file is for testing a version"
assert
__version__
==
"1.1
5.0rc1
"
,
(
"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
,):
...
...
cffi/__init__.py
View file @
9d89169b
...
...
@@ -5,8 +5,8 @@ from .api import FFI
from
.error
import
CDefError
,
FFIError
,
VerificationError
,
VerificationMissing
from
.error
import
PkgConfigError
__version__
=
"1.1
4.6
"
__version_info__
=
(
1
,
1
4
,
6
)
__version__
=
"1.1
5.0rc1
"
__version_info__
=
(
1
,
1
5
,
0
)
# 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__
...
...
cffi/_embedding.h
View file @
9d89169b
...
...
@@ -224,7 +224,7 @@ static int _cffi_initialize_python(void)
if
(
f
!=
NULL
&&
f
!=
Py_None
)
{
PyFile_WriteString
(
"
\n
From: "
_CFFI_MODULE_NAME
"
\n
compiled with cffi version: 1.1
4.6
"
"
\n
compiled with cffi version: 1.1
5.0rc1
"
"
\n
_cffi_backend module: "
,
f
);
modules
=
PyImport_GetModuleDict
();
mod
=
PyDict_GetItemString
(
modules
,
"_cffi_backend"
);
...
...
doc/source/conf.py
View file @
9d89169b
...
...
@@ -45,9 +45,9 @@ copyright = u'2012-2018, Armin Rigo, Maciej Fijalkowski'
# built documents.
#
# The short X.Y version.
version
=
'1.1
4
'
version
=
'1.1
5
'
# The full version, including alpha/beta/rc tags.
release
=
'1.1
4.6
'
release
=
'1.1
5.0rc1
'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
...
...
doc/source/installation.rst
View file @
9d89169b
...
...
@@ -52,13 +52,13 @@ Download and Installation:
* https://pypi.python.org/pypi/cffi
* Checksums of the "source" package version 1.1
4.6
:
* Checksums of the "source" package version 1.1
5.0rc1
:
- MD5:
5c118a18ea897df164dbff67a32876fc
- MD5:
...
- SHA1:
35bb24955834ecb5b7173e625fa95b02d638fcfd
- SHA1:
...
- SHA256:
c9a875ce9d7fe32887784274dd533c57909b7b1dcadcc128a2ac21331a9765dd
- SHA256:
...
* Or grab the most current version from the `Heptapod page`_:
``hg clone https://foss.heptapod.net/pypy/cffi``
...
...
doc/source/whatsnew.rst
View file @
9d89169b
...
...
@@ -2,6 +2,17 @@
What's New
======================
v1.15.0rc1
==========
* CPython 3.10 support (including wheels)
* MacOS arm64 support (including wheels)
* Initial Windows arm64 support
* Misc. doc and test updates
v1.14.6
=======
...
...
setup.py
View file @
9d89169b
...
...
@@ -186,7 +186,7 @@ Contact
`Mailing list <https://groups.google.com/forum/#!forum/python-cffi>`_
"""
,
version
=
'1.1
4.6
'
,
version
=
'1.1
5.0rc1
'
,
packages
=
[
'cffi'
]
if
cpython
else
[],
package_data
=
{
'cffi'
:
[
'_cffi_include.h'
,
'parse_c_type.h'
,
'_embedding.h'
,
'_cffi_errors.h'
]}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment