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
8e5d3d23
Unverified
Commit
8e5d3d23
authored
Jan 25, 2021
by
Henry Schreiner
Committed by
GitHub
Jan 25, 2021
Browse files
docs: prepare for 2.6.2 (#2820)
* docs: prepare for 2.6.2 * chore: pre-commit autoupdate
parent
42e73807
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
6 deletions
+15
-6
.pre-commit-config.yaml
.pre-commit-config.yaml
+4
-4
docs/changelog.rst
docs/changelog.rst
+11
-2
No files found.
.pre-commit-config.yaml
View file @
8e5d3d23
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
repos
:
repos
:
# Standard hooks
# Standard hooks
-
repo
:
https://github.com/pre-commit/pre-commit-hooks
-
repo
:
https://github.com/pre-commit/pre-commit-hooks
rev
:
v3.
2
.0
rev
:
v3.
4
.0
hooks
:
hooks
:
-
id
:
check-added-large-files
-
id
:
check-added-large-files
-
id
:
check-case-conflict
-
id
:
check-case-conflict
...
@@ -46,7 +46,7 @@ repos:
...
@@ -46,7 +46,7 @@ repos:
# Flake8 also supports pre-commit natively (same author)
# Flake8 also supports pre-commit natively (same author)
-
repo
:
https://gitlab.com/pycqa/flake8
-
repo
:
https://gitlab.com/pycqa/flake8
rev
:
3.8.
3
rev
:
3.8.
4
hooks
:
hooks
:
-
id
:
flake8
-
id
:
flake8
additional_dependencies
:
[
flake8-bugbear
,
pep8-naming
]
additional_dependencies
:
[
flake8-bugbear
,
pep8-naming
]
...
@@ -63,7 +63,7 @@ repos:
...
@@ -63,7 +63,7 @@ repos:
# Check static types with mypy
# Check static types with mypy
-
repo
:
https://github.com/pre-commit/mirrors-mypy
-
repo
:
https://github.com/pre-commit/mirrors-mypy
rev
:
v0.
79
0
rev
:
v0.
80
0
hooks
:
hooks
:
-
id
:
mypy
-
id
:
mypy
# The default Python type ignores .pyi files, so let's rerun if detected
# The default Python type ignores .pyi files, so let's rerun if detected
...
@@ -74,7 +74,7 @@ repos:
...
@@ -74,7 +74,7 @@ repos:
# Checks the manifest for missing files (native support)
# Checks the manifest for missing files (native support)
-
repo
:
https://github.com/mgedmin/check-manifest
-
repo
:
https://github.com/mgedmin/check-manifest
rev
:
"
0.4
3
"
rev
:
"
0.4
6
"
hooks
:
hooks
:
-
id
:
check-manifest
-
id
:
check-manifest
# This is a slow hook, so only run this if --hook-stage manual is passed
# This is a slow hook, so only run this if --hook-stage manual is passed
...
...
docs/changelog.rst
View file @
8e5d3d23
...
@@ -7,8 +7,8 @@ Starting with version 1.8.0, pybind11 releases use a `semantic versioning
...
@@ -7,8 +7,8 @@ Starting with version 1.8.0, pybind11 releases use a `semantic versioning
<http://semver.org>`_ policy.
<http://semver.org>`_ policy.
v2.6.2 (
TBA, not yet released
)
v2.6.2 (
Jan 26, 2021
)
---------------------
---------
---------------------
Minor missing functionality added:
Minor missing functionality added:
...
@@ -62,6 +62,10 @@ Bug fixes:
...
@@ -62,6 +62,10 @@ Bug fixes:
overloads.
overloads.
`#2698 <https://github.com/pybind/pybind11/pull/2698>`_
`#2698 <https://github.com/pybind/pybind11/pull/2698>`_
* When casting to a C++ integer, ``__index__`` is always called and not
considered as conversion, consistent with Python 3.8+.
`#2801 <https://github.com/pybind/pybind11/pull/2801>`_
* Fix bug where the constructor of ``object`` subclasses would not throw on
* Fix bug where the constructor of ``object`` subclasses would not throw on
being passed a Python object of the wrong type.
being passed a Python object of the wrong type.
`#2701 <https://github.com/pybind/pybind11/pull/2701>`_
`#2701 <https://github.com/pybind/pybind11/pull/2701>`_
...
@@ -74,6 +78,11 @@ Bug fixes:
...
@@ -74,6 +78,11 @@ Bug fixes:
than set an empty string.
than set an empty string.
`#2745 <https://github.com/pybind/pybind11/pull/2745>`_
`#2745 <https://github.com/pybind/pybind11/pull/2745>`_
* The module key in builtins that pybind11 uses to store its internals changed
from std::string to a python str type (more natural on Python 2, no change on
Python 3).
`#2814 <https://github.com/pybind/pybind11/pull/2814>`_
* Fixed assertion error related to unhandled (later overwritten) exception in
* Fixed assertion error related to unhandled (later overwritten) exception in
CPython 3.8 and 3.9 debug builds.
CPython 3.8 and 3.9 debug builds.
`#2685 <https://github.com/pybind/pybind11/pull/2685>`_
`#2685 <https://github.com/pybind/pybind11/pull/2685>`_
...
...
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