Skip to content

Commit 3466f9f

Browse files
committed
Bump version: 70.0.0 → 70.1.0
1 parent 8cc50d4 commit 3466f9f

12 files changed

+32
-15
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 70.0.0
2+
current_version = 70.1.0
33
commit = True
44
tag = True
55

NEWS.rst

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
v70.1.0
2+
=======
3+
4+
Features
5+
--------
6+
7+
- Adopted the ``bdist_wheel`` command from the ``wheel`` project -- by :user:`agronholm` (#1386)
8+
- Improve error message when ``pkg_resources.ZipProvider`` tries to extract resources with a missing Egg -- by :user:`Avasam`
9+
10+
Added variables and parameter type annotations to ``pkg_resources`` to be nearly on par with typeshed.\* -- by :user:`Avasam`
11+
\* Excluding ``TypeVar`` and ``overload``. Return types are currently inferred. (#4246)
12+
- Migrated Setuptools' own config to pyproject.toml (#4310)
13+
14+
15+
Bugfixes
16+
--------
17+
18+
- Prevent a ``TypeError: 'NoneType' object is not callable`` when ``shutil_rmtree`` is called without an ``onexc`` parameter on Python<=3.11 -- by :user:`Avasam` (#4382)
19+
- Replace use of mktemp with can_symlink from the stdlib test suite. (#4403)
20+
- Improvement for ``attr:`` directives in configuration to handle
21+
more edge cases related to complex ``package_dir``. (#4405)
22+
- Fix accidental implicit string concatenation. (#4411)
23+
24+
25+
Misc
26+
----
27+
28+
- #4365, #4422
29+
30+
131
v70.0.0
232
=======
333

newsfragments/1386.feature.rst

-1
This file was deleted.

newsfragments/4246.feature.rst

-4
This file was deleted.

newsfragments/4310.feature.rst

-1
This file was deleted.

newsfragments/4365.misc.rst

-1
This file was deleted.

newsfragments/4382.bugfix.rst

-1
This file was deleted.

newsfragments/4403.bugfix.rst

-1
This file was deleted.

newsfragments/4405.bugfix.rst

-2
This file was deleted.

newsfragments/4411.bugfix.rst

-1
This file was deleted.

newsfragments/4422.misc.rst

-1
This file was deleted.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ backend-path = ["."]
55

66
[project]
77
name = "setuptools"
8-
version = "70.0.0"
8+
version = "70.1.0"
99
authors = [
1010
{ name = "Python Packaging Authority", email = "[email protected]" },
1111
]

0 commit comments

Comments
 (0)