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
8ed28082
Commit
8ed28082
authored
Feb 07, 2016
by
Wenzel Jakob
Browse files
pybind11, version 1.2
parent
43b6a23a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
4 deletions
+10
-4
docs/changelog.rst
docs/changelog.rst
+6
-1
docs/release.rst
docs/release.rst
+2
-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 @
8ed28082
...
...
@@ -3,7 +3,11 @@
Changelog
#########
1.2 (not yet released)
1.3 (not yet released)
--------------------------
* TBD
1.2 (February 7, 2016)
--------------------------
* Optional: efficient generation of function signatures at compile time using C++14
...
...
@@ -34,6 +38,7 @@ Changelog
* Added enum comparison and casting methods
* Improved SFINAE-based detection of whether types are copy-constructible
* Eliminated many warnings about unused variables and the use of ``offsetof()``
* Support for ``std::array<>`` conversions
1.1 (December 7, 2015)
--------------------------
...
...
docs/release.rst
View file @
8ed28082
To release a new version of pybind11:
- Update `_version.py` (set release version, remove 'dev')
- Update version macros in `include/pybind11/common.h`
- Update `pybind11/_version.py` (set release version, remove 'dev')
- `git add` and `git commit`.
- `python setup.py sdist upload`.
- `python setup.py bdist_wheel upload`.
...
...
include/pybind11/common.h
View file @
8ed28082
...
...
@@ -31,7 +31,7 @@
#endif
#define PYBIND11_VERSION_MAJOR 1
#define PYBIND11_VERSION_MINOR
3
#define PYBIND11_VERSION_MINOR
2
/// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
#if defined(_MSC_VER)
...
...
pybind11/_version.py
View file @
8ed28082
version_info
=
(
1
,
2
,
'dev0'
)
version_info
=
(
1
,
2
)
__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