Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
pybind11
Commits
c4d7ccd8
Commit
c4d7ccd8
authored
Apr 30, 2016
by
Wenzel Jakob
Browse files
started working on v1.8
parent
e70b2abb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
docs/changelog.rst
docs/changelog.rst
+4
-0
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 @
c4d7ccd8
...
@@ -3,6 +3,10 @@
...
@@ -3,6 +3,10 @@
Changelog
Changelog
#########
#########
1.8 (April 30, 2016)
----------------------
TBD
1.7 (April 30, 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.
...
...
include/pybind11/common.h
View file @
c4d7ccd8
...
@@ -31,7 +31,7 @@
...
@@ -31,7 +31,7 @@
#endif
#endif
#define PYBIND11_VERSION_MAJOR 1
#define PYBIND11_VERSION_MAJOR 1
#define PYBIND11_VERSION_MINOR
7
#define PYBIND11_VERSION_MINOR
8
/// 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 @
c4d7ccd8
version_info
=
(
1
,
7
)
version_info
=
(
1
,
8
,
'dev0'
)
__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