Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pybind11
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
pybind11
Commits
a720a604
Commit
a720a604
authored
Jul 12, 2016
by
Wenzel Jakob
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated changelog with v1.8.1, updated release instructions
parent
4d727e10
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
docs/changelog.rst
+4
-1
docs/release.rst
+2
-1
include/pybind11/common.h
+1
-0
No files found.
docs/changelog.rst
View file @
a720a604
...
@@ -27,9 +27,12 @@ Breaking changes queued for v2.0.0 (Not yet released)
...
@@ -27,9 +27,12 @@ Breaking changes queued for v2.0.0 (Not yet released)
* ``make_iterator()`` improvements for better compatibility with various types
* ``make_iterator()`` improvements for better compatibility with various types
(now uses prefix increment operator)
(now uses prefix increment operator)
* ``arg()`` now accepts a wider range of argument types for default values
* ``arg()`` now accepts a wider range of argument types for default values
* Various minor improvements of library internals (no user-visible changes)
1.8.1 (July 12, 2016)
----------------------
* Fixed a rare but potentially very severe issue when the garbage collector ran
* Fixed a rare but potentially very severe issue when the garbage collector ran
during pybind11 type creation.
during pybind11 type creation.
* Various minor improvements of library internals (no user-visible changes)
1.8.0 (June 14, 2016)
1.8.0 (June 14, 2016)
----------------------
----------------------
...
...
docs/release.rst
View file @
a720a604
...
@@ -5,7 +5,8 @@ To release a new version of pybind11:
...
@@ -5,7 +5,8 @@ To release a new version of pybind11:
- Update version in ``docs/conf.py``
- Update version in ``docs/conf.py``
- Tag release date in ``docs/changelog.rst``.
- Tag release date in ``docs/changelog.rst``.
- ``git add`` and ``git commit``.
- ``git add`` and ``git commit``.
- ``git tag -a vX.Y -m 'vX.Y release'``.
- if new minor version: ``git checkout -b vX.Y``, ``git push -u origin vX.Y``
- ``git tag -a vX.Y.Z -m 'vX.Y.Z release'``.
- ``git push``
- ``git push``
- ``git push --tags``.
- ``git push --tags``.
- ``python setup.py sdist upload``.
- ``python setup.py sdist upload``.
...
...
include/pybind11/common.h
View file @
a720a604
...
@@ -32,6 +32,7 @@
...
@@ -32,6 +32,7 @@
#define PYBIND11_VERSION_MAJOR 1
#define PYBIND11_VERSION_MAJOR 1
#define PYBIND11_VERSION_MINOR 9
#define PYBIND11_VERSION_MINOR 9
#define PYBIND11_VERSION_PATCH dev0
/// 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)
...
...
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