Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
pybind11
Commits
65e95ea8
Unverified
Commit
65e95ea8
authored
Jul 16, 2021
by
Henry Schreiner
Committed by
GitHub
Jul 16, 2021
Browse files
chore: bump to 2.7.0 (#3123)
parent
6642f389
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
docs/changelog.rst
docs/changelog.rst
+2
-2
docs/release.rst
docs/release.rst
+1
-1
include/pybind11/detail/common.h
include/pybind11/detail/common.h
+3
-3
pybind11/_version.py
pybind11/_version.py
+1
-1
No files found.
docs/changelog.rst
View file @
65e95ea8
...
...
@@ -6,8 +6,8 @@ Changelog
Starting with version 1.8.0, pybind11 releases use a `semantic versioning
<http://semver.org>`_ policy.
v2.7.0 (
TBA, not yet released
)
---------------------
---------
v2.7.0 (
Jul 16, 2021
)
---------------------
New features:
...
...
docs/release.rst
View file @
65e95ea8
...
...
@@ -53,7 +53,7 @@ To release a new version of pybind11:
name like "Version X.Y.Z", and optionally copy-and-paste the changelog into
the description (processed as markdown by Pandoc). Check "pre-release" if
this is a beta/RC. You can get partway there with
``cat docs/changelog.rst | pand
s
oc -f rst -t markdown``.
``cat docs/changelog.rst | pandoc -f rst -t markdown``.
- CLI method: with ``gh`` installed, run ``gh release create vX.Y.Z -t "Version X.Y.Z"``
If this is a pre-release, add ``-p``.
...
...
include/pybind11/detail/common.h
View file @
65e95ea8
...
...
@@ -10,12 +10,12 @@
#pragma once
#define PYBIND11_VERSION_MAJOR 2
#define PYBIND11_VERSION_MINOR
6
#define PYBIND11_VERSION_PATCH
3.dev1
#define PYBIND11_VERSION_MINOR
7
#define PYBIND11_VERSION_PATCH
0
// Similar to Python's convention: https://docs.python.org/3/c-api/apiabiversion.html
// Additional convention: 0xD = dev
#define PYBIND11_VERSION_HEX 0x020
603D1
#define PYBIND11_VERSION_HEX 0x020
70000
#define PYBIND11_NAMESPACE_BEGIN(name) namespace name {
#define PYBIND11_NAMESPACE_END(name) }
...
...
pybind11/_version.py
View file @
65e95ea8
...
...
@@ -8,5 +8,5 @@ def _to_int(s):
return
s
__version__
=
"2.
6.3.dev1
"
__version__
=
"2.
7.0
"
version_info
=
tuple
(
_to_int
(
s
)
for
s
in
__version__
.
split
(
"."
))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment