Skip to content

Commit 51894fa

Browse files
committed
Minor updates to address comments by @YannickJadoul from Dec 1, 2020.
1 parent 37234f2 commit 51894fa

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

docs/changelog.rst

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Changelog
66
Starting with version 1.8.0, pybind11 releases use a `semantic versioning
77
<http://semver.org>`_ policy.
88

9-
v2.7.0 (WIP)
9+
v2.7.0 (TBA, not yet released)
1010
------------------------------
1111

1212
* ``py::str`` changed to exclusively hold `PyUnicodeObject`. Previously
@@ -16,11 +16,6 @@ v2.7.0 (WIP)
1616
`#2409 <https://github.com/pybind/pybind11/pull/2409>`_
1717

1818

19-
v2.6.3 (TBA, not yet released)
20-
------------------------------
21-
22-
* Details to follow here
23-
2419
v2.6.2 (Jan 26, 2021)
2520
---------------------
2621

docs/upgrade.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ and ``py::isinstance<str>()`` is ``true`` for both ``py::str`` and
1818
``py::bytes``. Starting with v2.7, ``py::str`` exclusively holds
1919
``PyUnicodeObject`` (`#2409 <https://github.com/pybind/pybind11/pull/2409>`_),
2020
and ``py::isinstance<str>()`` is ``true`` only for ``py::str``. To help in
21-
the transition of client code, the ``PYBIND11_STR_LEGACY_PERMISSIVE`` macro
21+
the transition of user code, the ``PYBIND11_STR_LEGACY_PERMISSIVE`` macro
2222
is provided as an escape hatch to go back to the legacy behavior. This macro
23-
will be removed in future releases. Two types of required client-code fixes
24-
are expected to be common:
23+
will be removed in future releases. Two types of required fixes are expected
24+
to be common:
2525

2626
* Accidental use of ``py::str`` instead of ``py::bytes``, masked by the legacy
2727
behavior. These are probably very easy to fix, by changing from

0 commit comments

Comments
 (0)