Skip to content

Commit d35dc06

Browse files
tacaswellmattip
authored andcommitted
BLD: catch the rest of the places the version is hard-coded
1 parent 430dcb7 commit d35dc06

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

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 = '2.0'
4949
# The full version, including alpha/beta/rc tags.
50-
release = '2.0.0.dev0'
50+
release = '2.0.1.dev0'
5151

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

src/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
#include "misc_thread_common.h"
5-
#define CFFI_VERSION "2.0.0.dev0"
5+
#define CFFI_VERSION "2.0.1.dev0"
66

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

src/c/test_c.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def _capture_unraisable_hook(ur_args):
6666
# ____________________________________________________________
6767

6868
import sys
69-
assert __version__ == "2.0.0.dev0", ("This test_c.py file is for testing a version"
69+
assert __version__ == "2.0.1.dev0", ("This test_c.py file is for testing a version"
7070
" of cffi that differs from the one that we"
7171
" get from 'import _cffi_backend'")
7272
if sys.version_info < (3,):

src/cffi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from .error import CDefError, FFIError, VerificationError, VerificationMissing
66
from .error import PkgConfigError
77

8-
__version__ = "2.0.0.dev0"
8+
__version__ = "2.0.1.dev0"
99
__version_info__ = (2, 0, 0, 'dev0')
1010

1111
# The verifier module file names are based on the CRC32 of a string that

src/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: 2.0.0.dev0"
228+
"\ncompiled with cffi version: 2.0.1.dev0"
229229
"\n_cffi_backend module: ", f);
230230
modules = PyImport_GetModuleDict();
231231
mod = PyDict_GetItemString(modules, "_cffi_backend");

0 commit comments

Comments
 (0)