]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
update version post-release
authorBob Halley <halley@dnspython.org>
Fri, 17 Jul 2020 13:40:27 +0000 (06:40 -0700)
committerBob Halley <halley@dnspython.org>
Fri, 17 Jul 2020 13:40:27 +0000 (06:40 -0700)
README.md
dns/version.py
pyproject.toml
setup.py

index 7c6bd2e8898f6033c6a22f710eab55e406b7b6f7..e22e81eabebb66ba4ab3588586267c6b3a765832 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.0.
+This is the development version of dnspython 2.1.0.
 Please read
 [What's New](https://dnspython.readthedocs.io/en/latest/whatsnew.html) for
 information about the changes in this release.
index 0b7c1d1308cf69b1f8e66b8fbec68df48416e241..cf2184b186262c9262aecf3a315a68ee03c22b00 100644 (file)
 #: MAJOR
 MAJOR = 2
 #: MINOR
-MINOR = 0
+MINOR = 1
 #: MICRO
 MICRO = 0
 #: RELEASELEVEL
-RELEASELEVEL = 0x0f
+RELEASELEVEL = 0x00
 #: SERIAL
-SERIAL = 0
+SERIAL = 1
 
 if RELEASELEVEL == 0x0f:  # pragma: no cover
     #: version
index 053b79c954a4e843fdc2d64dc6a6770a1f75d6c6..059993f0ec69be4e5c54f08c0a97ff645e87a652 100644 (file)
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "dnspython"
-version = "2.0.0"
+version = "2.1.0dev1"
 description = "DNS toolkit"
 authors = ["Bob Halley <halley@dnspython.org>"]
 license = "ISC"
index cd1be21a6ce1762f031db9ff7cd5f359a52b835e..d7d965d83351454db9f53e897d0a5535fca8e81a 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@
 import sys
 from setuptools import setup
 
-version = '2.0.0'
+version = '2.1.0dev1'
 
 try:
     sys.argv.remove("--cython-compile")