summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarry Warsaw2017-05-25 14:51:52 -0700
committerBarry Warsaw2017-05-25 14:51:52 -0700
commit14058b9b70b2d5beb9bc48675f79c8fa25de28f6 (patch)
treeb3018026a8a700d203dbb1c496febbc27c58ea9c
parent069e393512ec87da50ed0cca767f433a9358bbb0 (diff)
downloadmailman-14058b9b70b2d5beb9bc48675f79c8fa25de28f6.tar.gz
mailman-14058b9b70b2d5beb9bc48675f79c8fa25de28f6.tar.zst
mailman-14058b9b70b2d5beb9bc48675f79c8fa25de28f6.zip
-rw-r--r--src/mailman/docs/NEWS.rst2
-rw-r--r--src/mailman/version.py6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mailman/docs/NEWS.rst b/src/mailman/docs/NEWS.rst
index c7bbc6de6..05ddbedbd 100644
--- a/src/mailman/docs/NEWS.rst
+++ b/src/mailman/docs/NEWS.rst
@@ -10,7 +10,7 @@ Here is a history of user visible changes to Mailman.
3.1.0 -- "Between The Wheels"
=============================
-(2017-XX-XX)
+(2017-05-25)
Bugs
----
diff --git a/src/mailman/version.py b/src/mailman/version.py
index b21d37164..d1a0b5ec8 100644
--- a/src/mailman/version.py
+++ b/src/mailman/version.py
@@ -18,7 +18,7 @@
"""Mailman version strings."""
# Mailman version.
-VERSION = '3.1.0rc2'
+VERSION = '3.1.0'
CODENAME = 'Between The Wheels'
# And as a hex number in the manner of PY_VERSION_HEX.
@@ -32,9 +32,9 @@ FINAL = 0xf
MAJOR_REV = 3
MINOR_REV = 1
MICRO_REV = 0
-REL_LEVEL = GAMMA
+REL_LEVEL = FINAL
# At most 15 beta releases!
-REL_SERIAL = 2
+REL_SERIAL = 0
HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) |
(REL_LEVEL << 4) | (REL_SERIAL << 0)) # noqa: E221