Skip to content

Commit ffa3468

Browse files
committed
chore: bump to 2.9.1
1 parent 3899dc6 commit ffa3468

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

include/pybind11/detail/common.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111

1212
#define PYBIND11_VERSION_MAJOR 2
1313
#define PYBIND11_VERSION_MINOR 9
14-
#define PYBIND11_VERSION_PATCH 0
14+
#define PYBIND11_VERSION_PATCH 1
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 0x02090000
18+
#define PYBIND11_VERSION_HEX 0x02090100
1919

2020
#define PYBIND11_NAMESPACE_BEGIN(name) namespace name {
2121
#define PYBIND11_NAMESPACE_END(name) }

pybind11/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ def _to_int(s):
88
return s
99

1010

11-
__version__ = "2.9.0"
11+
__version__ = "2.9.1"
1212
version_info = tuple(_to_int(s) for s in __version__.split("."))

setup.cfg

+8-1
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,15 @@ keywords =
3131
C++11
3232
Python bindings
3333

34+
project_urls =
35+
Documentation = https://pybind11.readthedocs.io/
36+
Bug Tracker = https://github.com/pybind/pybind11/issues
37+
Discussions = https://github.com/pybind/pybind11/discussions
38+
Changelog = https://pybind11.readthedocs.io/en/latest/changelog.html
39+
Chat = https://gitter.im/pybind/Lobby
40+
3441
[options]
35-
python_requires = >=2.7, !=3.0, !=3.1, !=3.2, !=3.3, !=3.4
42+
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
3643
zip_safe = False
3744

3845
[bdist_wheel]

0 commit comments

Comments
 (0)