]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
update version post release
authorBob Halley <halley@dnspython.org>
Sat, 4 Jul 2020 17:24:47 +0000 (10:24 -0700)
committerBob Halley <halley@dnspython.org>
Sat, 4 Jul 2020 17:24:47 +0000 (10:24 -0700)
README.md
dns/version.py
pyproject.toml
setup.py

index 59e225156919772b1d3e2cc205056eabd62002a6..d5a01ca708caf85ac9b33974acda9f8f45f6d6fa 100644 (file)
--- a/README.md
+++ b/README.md
@@ -31,7 +31,7 @@ to facilitate the testing of DNS software.
 
 ## ABOUT THIS RELEASE
 
-This is dnspython 2.0.0rc2.
+This is the development version of dnspython 2.0.0.
 Please read
 [What's New](https://dnspython.readthedocs.io/en/latest/whatsnew.html) for
 information about the changes in this release.
index dcdbbe062f36088a9e0b095f9bc2d4863a4771df..ddd24f5ffde5f647c254bb27ec40e5a00165f151 100644 (file)
@@ -24,9 +24,9 @@ MINOR = 0
 #: MICRO
 MICRO = 0
 #: RELEASELEVEL
-RELEASELEVEL = 0x0c
+RELEASELEVEL = 0x00
 #: SERIAL
-SERIAL = 2
+SERIAL = 3
 
 if RELEASELEVEL == 0x0f:  # pragma: no cover
     #: version
index 970d92fa09ba820b82266e30ca772537da125c3a..e4f5e5df59f4ca2a68731aea2528ede58639a499 100644 (file)
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "dnspython"
-version = "2.0.0rc2"
+version = "2.0.0dev3"
 description = "DNS toolkit"
 authors = ["Bob Halley <halley@dnspython.org>"]
 license = "ISC"
index 8dad51254fafff15b3bed8ec4b68bd161c57d9d0..2090ac6592f524503304eca8ce98ba2a2a79db00 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@
 import sys
 from setuptools import setup
 
-version = '2.0.0rc2'
+version = '2.0.0dev3'
 
 try:
     sys.argv.remove("--cython-compile")