diff options
author | Benoit Pierre <benoit.pierre@gmail.com> | 2019-04-22 22:07:03 +0200 |
---|---|---|
committer | Benoit Pierre <benoit.pierre@gmail.com> | 2019-04-22 22:07:03 +0200 |
commit | 97d7563915b6e2ad8a638e988361357709a83bda (patch) | |
tree | e306253f785babba89bc166098f093536b7a9b19 | |
parent | e66857af348a823b15701c39a88add28cfaab3bd (diff) | |
download | external_python_setuptools-97d7563915b6e2ad8a638e988361357709a83bda.tar.gz external_python_setuptools-97d7563915b6e2ad8a638e988361357709a83bda.tar.bz2 external_python_setuptools-97d7563915b6e2ad8a638e988361357709a83bda.zip |
Bump version: 41.0.0 → 41.0.1v41.0.1
-rw-r--r-- | .bumpversion.cfg | 2 | ||||
-rw-r--r-- | CHANGES.rst | 8 | ||||
-rw-r--r-- | changelog.d/1671.change.rst | 1 | ||||
-rw-r--r-- | changelog.d/1709.change.rst | 1 | ||||
-rw-r--r-- | changelog.d/1741.change.rst | 1 | ||||
-rw-r--r-- | setup.cfg | 2 |
6 files changed, 10 insertions, 5 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a8fd179a..87acb5ef 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 41.0.0 +current_version = 41.0.1 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index 08c5ee0b..9da22537 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,11 @@ +v41.0.1 +------- + +* #1671: Fixed issue with the PEP 517 backend that prevented building a wheel when the ``dist/`` directory contained existing ``.whl`` files. +* #1709: In test.paths_on_python_path, avoid adding unnecessary duplicates to the PYTHONPATH. +* #1741: In package_index, now honor "current directory" during a checkout of git and hg repositories under Windows + + v41.0.0 ------- diff --git a/changelog.d/1671.change.rst b/changelog.d/1671.change.rst deleted file mode 100644 index 95ae49da..00000000 --- a/changelog.d/1671.change.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed issue with the PEP 517 backend that prevented building a wheel when the ``dist/`` directory contained existing ``.whl`` files. diff --git a/changelog.d/1709.change.rst b/changelog.d/1709.change.rst deleted file mode 100644 index c6670ae9..00000000 --- a/changelog.d/1709.change.rst +++ /dev/null @@ -1 +0,0 @@ -In test.paths_on_python_path, avoid adding unnecessary duplicates to the PYTHONPATH. diff --git a/changelog.d/1741.change.rst b/changelog.d/1741.change.rst deleted file mode 100644 index 03b24780..00000000 --- a/changelog.d/1741.change.rst +++ /dev/null @@ -1 +0,0 @@ -In package_index, now honor "current directory" during a checkout of git and hg repositories under Windows @@ -19,4 +19,4 @@ universal = 1 [metadata] license_file = LICENSE -version = 41.0.0 +version = 41.0.1 |