File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 63
63
# The short X.Y version.
64
64
version = '2.2'
65
65
# The full version, including alpha/beta/rc tags.
66
- release = '2.2.dev0 '
66
+ release = '2.2.0 '
67
67
68
68
# The language for content autogenerated by Sphinx. Refer to documentation
69
69
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ To release a new version of pybind11:
2
2
3
3
- Update the version number and push to pypi
4
4
- Update ``pybind11/_version.py `` (set release version, remove 'dev').
5
- - Update ``PYBIND11_VERSION_MAJOR `` etc. in ``include/pybind11/common.h ``.
5
+ - Update ``PYBIND11_VERSION_MAJOR `` etc. in ``include/pybind11/detail/ common.h ``.
6
6
- Ensure that all the information in ``setup.py `` is up-to-date.
7
7
- Update version in ``docs/conf.py ``.
8
8
- Tag release date in ``docs/changelog.rst ``.
Original file line number Diff line number Diff line change 93
93
94
94
#define PYBIND11_VERSION_MAJOR 2
95
95
#define PYBIND11_VERSION_MINOR 2
96
- #define PYBIND11_VERSION_PATCH dev0
96
+ #define PYBIND11_VERSION_PATCH 0
97
97
98
98
// / Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
99
99
#if defined(_MSC_VER)
Original file line number Diff line number Diff line change 1
- version_info = (2 , 2 , 'dev0' )
1
+ version_info = (2 , 2 , 0 )
2
2
__version__ = '.' .join (map (str , version_info ))
You can’t perform that action at this time.
0 commit comments