aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-09-16 12:19:10 -0400
committerJason R. Coombs <jaraco@jaraco.com>2018-09-16 12:19:10 -0400
commitb711d1b53b2556b47273c28dae3345a664c54972 (patch)
treea3aacb6a08f257a4ff174f1e6c5a27a48ffc7ce9
parent002c439191aa58202cb613d47ce3e93c445372bd (diff)
downloadexternal_python_setuptools-b711d1b53b2556b47273c28dae3345a664c54972.tar.gz
external_python_setuptools-b711d1b53b2556b47273c28dae3345a664c54972.tar.bz2
external_python_setuptools-b711d1b53b2556b47273c28dae3345a664c54972.zip
Bump version: 40.2.0 → 40.3.0v40.3.0
-rw-r--r--CHANGES.rst11
-rw-r--r--changelog.d/1402.change.rst2
-rw-r--r--changelog.d/1427.change.rst1
-rw-r--r--changelog.d/1474.change.rst1
-rw-r--r--changelog.d/1479.misc.rst1
-rw-r--r--changelog.d/1486.change.rst1
-rw-r--r--setup.cfg2
-rwxr-xr-xsetup.py2
8 files changed, 13 insertions, 8 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 5c673a74..5da4acfa 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,14 @@
+v40.3.0
+-------
+
+* #1402: Fixed a bug with namespace packages under Python 3.6 when one package in
+ current directory hides another which is installed.
+* #1427: Set timestamp of ``.egg-info`` directory whenever ``egg_info`` command is run.
+* #1474: ``build_meta.get_requires_for_build_sdist`` now does not include the ``wheel`` package anymore.
+* #1486: Suppress warnings in pkg_resources.handle_ns.
+* #1479: Remove internal use of six.binary_type.
+
+
v40.2.0
-------
diff --git a/changelog.d/1402.change.rst b/changelog.d/1402.change.rst
deleted file mode 100644
index 52852f05..00000000
--- a/changelog.d/1402.change.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Fixed a bug with namespace packages under Python 3.6 when one package in
-current directory hides another which is installed.
diff --git a/changelog.d/1427.change.rst b/changelog.d/1427.change.rst
deleted file mode 100644
index 86260235..00000000
--- a/changelog.d/1427.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Set timestamp of ``.egg-info`` directory whenever ``egg_info`` command is run.
diff --git a/changelog.d/1474.change.rst b/changelog.d/1474.change.rst
deleted file mode 100644
index c02f059b..00000000
--- a/changelog.d/1474.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-``build_meta.get_requires_for_build_sdist`` now does not include the ``wheel`` package anymore.
diff --git a/changelog.d/1479.misc.rst b/changelog.d/1479.misc.rst
deleted file mode 100644
index 604827c1..00000000
--- a/changelog.d/1479.misc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Remove internal use of six.binary_type.
diff --git a/changelog.d/1486.change.rst b/changelog.d/1486.change.rst
deleted file mode 100644
index 561784fb..00000000
--- a/changelog.d/1486.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Suppress warnings in pkg_resources.handle_ns.
diff --git a/setup.cfg b/setup.cfg
index df021971..f013124c 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 40.2.0
+current_version = 40.3.0
commit = True
tag = True
diff --git a/setup.py b/setup.py
index 96dbbbbc..38057fd8 100755
--- a/setup.py
+++ b/setup.py
@@ -89,7 +89,7 @@ def pypi_link(pkg_filename):
setup_params = dict(
name="setuptools",
- version="40.2.0",
+ version="40.3.0",
description=(
"Easily download, build, install, upgrade, and uninstall "
"Python packages"