Skip to content

Commit

Permalink
started working on v1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
wjakob committed Apr 30, 2016
1 parent e70b2ab commit c4d7ccd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Changelog
#########

1.8 (April 30, 2016)
----------------------
TBD

1.7 (April 30, 2016)
----------------------
* Added a new ``move`` return value policy that triggers C++11 move semantics.
Expand Down
2 changes: 1 addition & 1 deletion include/pybind11/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#endif

#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
#if defined(_MSC_VER)
Expand Down
2 changes: 1 addition & 1 deletion pybind11/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (1, 7)
version_info = (1, 8, 'dev0')
__version__ = '.'.join(map(str, version_info))

0 comments on commit c4d7ccd

Please sign in to comment.