Skip to content

Commit ba21763

Browse files
committed
docs: prep for 7.0.5
1 parent c55dffe commit ba21763

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

Diff for: CHANGES.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ development at the same time, such as 4.5.x and 5.0.
1717
.. Version 9.8.1 — 2027-07-27
1818
.. --------------------------
1919
20-
Unreleased
21-
----------
20+
.. _changes_7-0-5:
21+
22+
Version 7.0.5 — 2023-01-10
23+
--------------------------
2224

2325
- Fix: On Python 3.7, a file with type annotations but no ``from __future__
2426
import annotations`` would be missing statements in the coverage report. This

Diff for: coverage/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
# version_info: same semantics as sys.version_info.
1010
# _dev: the .devN suffix if any.
11-
version_info = (7, 0, 5, "alpha", 0)
12-
_dev = 1
11+
version_info = (7, 0, 5, "final", 0)
12+
_dev = 0
1313

1414

1515
def _make_version(

Diff for: doc/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@
6565
# @@@ editable
6666
copyright = "2009–2023, Ned Batchelder" # pylint: disable=redefined-builtin
6767
# The short X.Y.Z version.
68-
version = "7.0.4"
68+
version = "7.0.5"
6969
# The full version, including alpha/beta/rc tags.
70-
release = "7.0.4"
70+
release = "7.0.5"
7171
# The date of release, in "monthname day, year" format.
72-
release_date = "January 7, 2023"
72+
release_date = "January 10, 2023"
7373
# @@@ end
7474

7575
rst_epilog = """

0 commit comments

Comments
 (0)