]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
set versioning to dev
authorBob Halley <halley@dnspython.org>
Sat, 20 Jun 2020 21:14:49 +0000 (14:14 -0700)
committerBob Halley <halley@dnspython.org>
Sat, 20 Jun 2020 21:14:49 +0000 (14:14 -0700)
README.md
dns/version.py
pyproject.toml
setup.py

index cb31b6ee03cd9abb5a5206eab6997e75c86035cc..0de8e95bee75e3f4b851c07dd5d930d8dfa9edf3 100644 (file)
--- a/README.md
+++ b/README.md
@@ -29,8 +29,8 @@ to facilitate the testing of DNS software.
 
 ## ABOUT THIS RELEASE
 
-This is dnspython 2.0.0rc1, the first release candidate for dnspython
-2.0.0.  Please read
+This is the dnspython 2.0.0 development branch.
+Please read
 [What's New](https://dnspython.readthedocs.io/en/latest/whatsnew.html) for
 information about the changes in this release.
 
index a9d246153cecaf6e188b673042b5bf8020891750..d8973956fbf6476332748f01d20abb914aaf091b 100644 (file)
@@ -24,9 +24,9 @@ MINOR = 0
 #: MICRO
 MICRO = 0
 #: RELEASELEVEL
-RELEASELEVEL = 0x0c
+RELEASELEVEL = 0x00
 #: SERIAL
-SERIAL = 1
+SERIAL = 2
 
 if RELEASELEVEL == 0x0f:  # pragma: no cover
     #: version
index 3ec4d9d0af4a5e4231c954cbf5d630e08436351b..017ea575ed4449aa0b4c09857704a68676ac61ce 100644 (file)
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "dnspython"
-version = "2.0.0rc1"
+version = "2.0.0dev2"
 description = "DNS toolkit"
 authors = ["Bob Halley <halley@dnspython.org>"]
 license = "ISC"
index 226e102dcccac4cd7a3a6925f35e523b57a379b8..3451d9e16b97cdbe37caf75e1aa429c711dc9646 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@
 import sys
 from setuptools import setup
 
-version = '2.0.0rc1'
+version = '2.0.0dev2'
 
 try:
     sys.argv.remove("--cython-compile")