-
Notifications
You must be signed in to change notification settings - Fork 82
Update version numbers to prepare for v2.1 release #250
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
2a462c3
464b30a
8df8f09
f38d28a
4db93ca
c59670b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -222,7 +222,7 @@ static int _cffi_initialize_python(void) | |
|
|
||
| if (f != NULL && f != Py_None) { | ||
| PyFile_WriteString("\nFrom: " _CFFI_MODULE_NAME | ||
| "\ncompiled with cffi version: 2.0.1.dev0" | ||
| "\ncompiled with cffi version: 2.1.0.dev0" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there a test that this matches the
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And could this use
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It can't easily use There is a test for this: I went ahead and updated the test to make that error message nicer for the next person who needs to do this. See the second-to-last commit. |
||
| "\n_cffi_backend module: ", f); | ||
| modules = PyImport_GetModuleDict(); | ||
| mod = PyDict_GetItemString(modules, "_cffi_backend"); | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you want to mention the new build tool to support non-setuptools build systems?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, of course that's a pretty big new feature!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was already a release note but it was in the 2.0 notes. I moved it into the correct section.