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
c16da993
Commit
c16da993
authored
Oct 16, 2020
by
Henry Schreiner
Browse files
chore: bump to 2.6.0rc3
parent
064362fb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
docs/release.rst
docs/release.rst
+6
-4
include/pybind11/detail/common.h
include/pybind11/detail/common.h
+1
-1
pybind11/_version.py
pybind11/_version.py
+1
-1
No files found.
docs/release.rst
View file @
c16da993
...
...
@@ -31,7 +31,8 @@ To release a new version of pybind11:
fails due to a known flake issue, either ignore or restart CI.)
- Add a release branch if this is a new minor version
- ``git checkout -b vX.Y``, ``git push -u origin vX.Y``
- Update tags
- Update tags (optional; if you skip this, the GitHub release makes a
non-annotated tag for you)
- ``git tag -a vX.Y.Z -m 'vX.Y.Z release'``.
- ``git push --tags``.
- Update stable
...
...
@@ -43,9 +44,10 @@ To release a new version of pybind11:
(Note: if you do not use an existing tag, this creates a new lightweight tag
for you, so you could skip the above step).
- GUI method: click "Create a new release" on the far right, fill in the tag
name, fill in a release 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.
name (if you didn't tag above, it will be made here), fill in a release
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.
- 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 @
c16da993
...
...
@@ -11,7 +11,7 @@
#define PYBIND11_VERSION_MAJOR 2
#define PYBIND11_VERSION_MINOR 6
#define PYBIND11_VERSION_PATCH 0rc
2
#define PYBIND11_VERSION_PATCH 0rc
3
#define PYBIND11_NAMESPACE_BEGIN(name) namespace name {
#define PYBIND11_NAMESPACE_END(name) }
...
...
pybind11/_version.py
View file @
c16da993
...
...
@@ -8,5 +8,5 @@ def _to_int(s):
return
s
__version__
=
"2.6.0rc
2
"
__version__
=
"2.6.0rc
3
"
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