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
6
6
Starting with version 1.8.0, pybind11 releases use a `semantic versioning
7
7
<http://semver.org> `_ policy.
8
8
9
- v2.7.0 (TBA, not yet released )
10
- ------------------------------
9
+ v2.7.0 (Jul 16, 2021 )
10
+ ---------------------
11
11
12
12
New features:
13
13
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ To release a new version of pybind11:
53
53
name like "Version X.Y.Z", and optionally copy-and-paste the changelog into
54
54
the description (processed as markdown by Pandoc). Check "pre-release" if
55
55
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 ``.
57
57
- CLI method: with ``gh `` installed, run ``gh release create vX.Y.Z -t "Version X.Y.Z" ``
58
58
If this is a pre-release, add ``-p ``.
59
59
Original file line number Diff line number Diff line change 10
10
#pragma once
11
11
12
12
#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
15
15
16
16
// Similar to Python's convention: https://docs.python.org/3/c-api/apiabiversion.html
17
17
// Additional convention: 0xD = dev
18
- #define PYBIND11_VERSION_HEX 0x020603D1
18
+ #define PYBIND11_VERSION_HEX 0x02070000
19
19
20
20
#define PYBIND11_NAMESPACE_BEGIN (name ) namespace name {
21
21
#define PYBIND11_NAMESPACE_END (name ) }
Original file line number Diff line number Diff line change @@ -8,5 +8,5 @@ def _to_int(s):
8
8
return s
9
9
10
10
11
- __version__ = "2.6.3.dev1 "
11
+ __version__ = "2.7.0 "
12
12
version_info = tuple (_to_int (s ) for s in __version__ .split ("." ))
You can’t perform that action at this time.
0 commit comments