aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-03-29 14:18:14 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-03-29 14:18:14 -0400
commitaf4b8f9370b9e18a9f5fe43e17161533e1a31646 (patch)
treee9bfee277a800f44ca2abb9aeae254974e9abd3c
parenta04851c3e7b7e2b87f62d2de7e54c97c87881fcc (diff)
downloadexternal_python_setuptools-af4b8f9370b9e18a9f5fe43e17161533e1a31646.tar.gz
external_python_setuptools-af4b8f9370b9e18a9f5fe43e17161533e1a31646.tar.bz2
external_python_setuptools-af4b8f9370b9e18a9f5fe43e17161533e1a31646.zip
Follow semver to the letter for simplicity.
-rw-r--r--CHANGES.txt6
-rw-r--r--docs/developer-guide.txt5
-rwxr-xr-xsetup.cfg6
-rwxr-xr-xsetup.py2
4 files changed, 7 insertions, 12 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index c95017d9..abd5f24b 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -2,12 +2,14 @@
CHANGES
=======
-20.6
-----
+v20.6.0
+-------
* New release process that relies on
`bumpversion <https://github.com/peritus/bumpversion>`_
and Travis CI for continuous deployment.
+* Project versioning semantics now follow
+ `semver <https://semver.org>`_ precisely.
20.5
----
diff --git a/docs/developer-guide.txt b/docs/developer-guide.txt
index 688300dc..c82adbb9 100644
--- a/docs/developer-guide.txt
+++ b/docs/developer-guide.txt
@@ -103,10 +103,7 @@ Under continuous integration, additional tests may be run. See the
Semantic Versioning
-------------------
-Setuptools follows ``semver`` with some exceptions:
-
-- Uses two-segment version when three segment version ends in zero
-- Omits 'v' prefix for tags.
+Setuptools follows ``semver``.
.. explain value of reflecting meaning in versions.
diff --git a/setup.cfg b/setup.cfg
index 72967fa4..6112885d 100755
--- a/setup.cfg
+++ b/setup.cfg
@@ -24,12 +24,8 @@ formats = gztar zip
universal=1
[bumpversion]
-current_version = 20.5
+current_version = 20.5.0
commit = True
tag = True
-parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?
-serialize=
- {major}.{minor}.{patch}
- {major}.{minor}
[bumpversion:file:setup.py]
diff --git a/setup.py b/setup.py
index 021edab3..3e50cf5c 100755
--- a/setup.py
+++ b/setup.py
@@ -68,7 +68,7 @@ wheel = ['wheel'] if needs_wheel else []
setup_params = dict(
name="setuptools",
- version="20.5",
+ version="20.5.0",
description="Easily download, build, install, upgrade, and uninstall "
"Python packages",
author="Python Packaging Authority",