Skip to content

Commit 65e95ea

Browse files
authored
chore: bump to 2.7.0 (#3123)
1 parent 6642f38 commit 65e95ea

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Changelog
66
Starting 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

1212
New features:
1313

docs/release.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

include/pybind11/detail/common.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
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) }

pybind11/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"
1212
version_info = tuple(_to_int(s) for s in __version__.split("."))

0 commit comments

Comments
 (0)