File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ Changelog
66Starting with version 1.8.0, pybind11 releases use a `semantic versioning
77<http://semver.org> `_ policy.
88
9- v2.7.0 (TBA, not yet released )
10- ------------------------------
9+ v2.7.0 (Jul 16, 2021 )
10+ ---------------------
1111
1212New features:
1313
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ To release a new version of pybind11:
5353 name like "Version X.Y.Z", and optionally copy-and-paste the changelog into
5454 the description (processed as markdown by Pandoc). Check "pre-release" if
5555 this is a beta/RC. You can get partway there with
56- ``cat docs/changelog.rst | pandsoc -f rst -t markdown ``.
56+ ``cat docs/changelog.rst | pandoc -f rst -t markdown ``.
5757 - CLI method: with ``gh `` installed, run ``gh release create vX.Y.Z -t "Version X.Y.Z" ``
5858 If this is a pre-release, add ``-p ``.
5959
Original file line number Diff line number Diff line change 1010#pragma once
1111
1212#define PYBIND11_VERSION_MAJOR 2
13- #define PYBIND11_VERSION_MINOR 6
14- #define PYBIND11_VERSION_PATCH 3 .dev1
13+ #define PYBIND11_VERSION_MINOR 7
14+ #define PYBIND11_VERSION_PATCH 0
1515
1616// Similar to Python's convention: https://docs.python.org/3/c-api/apiabiversion.html
1717// Additional convention: 0xD = dev
18- #define PYBIND11_VERSION_HEX 0x020603D1
18+ #define PYBIND11_VERSION_HEX 0x02070000
1919
2020#define PYBIND11_NAMESPACE_BEGIN (name ) namespace name {
2121#define PYBIND11_NAMESPACE_END (name ) }
Original file line number Diff line number Diff line change @@ -8,5 +8,5 @@ def _to_int(s):
88 return s
99
1010
11- __version__ = "2.6.3.dev1 "
11+ __version__ = "2.7.0 "
1212version_info = tuple (_to_int (s ) for s in __version__ .split ("." ))
You can’t perform that action at this time.
0 commit comments