Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
gaoqiong
pybind11
Commits
e70b2abb
Commit
e70b2abb
authored
Apr 30, 2016
by
Wenzel Jakob
Browse files
preparing for v1.7 release
parent
1959d18c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
docs/changelog.rst
docs/changelog.rst
+7
-1
include/pybind11/common.h
include/pybind11/common.h
+1
-1
pybind11/_version.py
pybind11/_version.py
+1
-1
No files found.
docs/changelog.rst
View file @
e70b2abb
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
Changelog
Changelog
#########
#########
1.
6
(April
28
, 2016)
1.
7
(April
30
, 2016)
----------------------
----------------------
* Added a new ``move`` return value policy that triggers C++11 move semantics.
* Added a new ``move`` return value policy that triggers C++11 move semantics.
The automatic return value policy falls back to this case whenever a rvalue
The automatic return value policy falls back to this case whenever a rvalue
...
@@ -11,6 +11,7 @@ Changelog
...
@@ -11,6 +11,7 @@ Changelog
* Significantly more general GIL state routines that are used instead of
* Significantly more general GIL state routines that are used instead of
Python's troublesome ``PyGILState_Ensure`` and ``PyGILState_Release`` API
Python's troublesome ``PyGILState_Ensure`` and ``PyGILState_Release`` API
* Redesign of opaque types that drastically simplifies their usage
* Redesign of opaque types that drastically simplifies their usage
* Extended ability to pass values of type ``[const] void *``
* ``keep_alive`` fix: don't fail when there is no patient
* ``keep_alive`` fix: don't fail when there is no patient
* ``functional.h``: acquire the GIL before calling a Python function
* ``functional.h``: acquire the GIL before calling a Python function
* Added Python RAII type wrappers ``none`` and ``iterable``
* Added Python RAII type wrappers ``none`` and ``iterable``
...
@@ -19,6 +20,11 @@ Changelog
...
@@ -19,6 +20,11 @@ Changelog
* Iterator improvements and fixes
* Iterator improvements and fixes
* Documentation on return value policies and opaque types improved
* Documentation on return value policies and opaque types improved
1.6 (April 30, 2016)
----------------------
* Skipped due to upload to PyPI gone wrong and inability to recover
(https://github.com/pypa/packaging-problems/issues/74)
1.5 (April 21, 2016)
1.5 (April 21, 2016)
----------------------
----------------------
* For polymorphic types, use RTTI to try to return the closest type registered with pybind11
* For polymorphic types, use RTTI to try to return the closest type registered with pybind11
...
...
include/pybind11/common.h
View file @
e70b2abb
...
@@ -31,7 +31,7 @@
...
@@ -31,7 +31,7 @@
#endif
#endif
#define PYBIND11_VERSION_MAJOR 1
#define PYBIND11_VERSION_MAJOR 1
#define PYBIND11_VERSION_MINOR
6
#define PYBIND11_VERSION_MINOR
7
/// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
/// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
#if defined(_MSC_VER)
#if defined(_MSC_VER)
...
...
pybind11/_version.py
View file @
e70b2abb
version_info
=
(
1
,
6
,
'dev0'
)
version_info
=
(
1
,
7
)
__version__
=
'.'
.
join
(
map
(
str
,
version_info
))
__version__
=
'.'
.
join
(
map
(
str
,
version_info
))
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