]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
post 2.1.0 versioning
authorBob Halley <halley@dnspython.org>
Thu, 7 Jan 2021 17:28:21 +0000 (09:28 -0800)
committerBob Halley <halley@dnspython.org>
Thu, 7 Jan 2021 17:28:21 +0000 (09:28 -0800)
README.md
dns/version.py
doc/whatsnew.rst
pyproject.toml
setup.py

index 62b6df1677b31c9e621ec29c7a5065c36889b0fe..4a3913c212fcb11c265f0137436cbfac3b0f7569 100644 (file)
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ to facilitate the testing of DNS software.
 
 ## ABOUT THIS RELEASE
 
-This is dnspython 2.1.0.
+This is the development version of dnspython 2.2.0.
 Please read
 [What's New](https://dnspython.readthedocs.io/en/stable/whatsnew.html) for
 information about the changes in this release.
index b371b73da280fe3983e4fa00b48217ccc2f202f7..b84c41abb4fea44aef6f7ae8452e7be55a881205 100644 (file)
 #: MAJOR
 MAJOR = 2
 #: MINOR
-MINOR = 1
+MINOR = 2
 #: MICRO
 MICRO = 0
 #: RELEASELEVEL
-RELEASELEVEL = 0x0f
+RELEASELEVEL = 0x00
 #: SERIAL
 SERIAL = 0
 
index 0bdb860ee2ca0a55aaf6e0741b83230ce52cf85f..99f04927fc0908ed06098fb779efd6d54277acf7 100644 (file)
@@ -3,6 +3,11 @@
 What's New in dnspython
 =======================
 
+2.2.0
+----------------------
+
+Nothing yet!
+
 2.1.0
 ----------------------
 
index 11f1c63916fc63d48f5ae6dca4a90648c2dfc2d2..cd90efe6f5d3d5cc2aa77e32b309a5c6e561a0d0 100644 (file)
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "dnspython"
-version = "2.1.0"
+version = "2.2.0"
 description = "DNS toolkit"
 authors = ["Bob Halley <halley@dnspython.org>"]
 license = "ISC"
index 196d93819ff48cf4b95ff1acf3af6594499785b0..c2412e6dbee06268ad1a3afb8bb7bb7f436789bd 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@
 import sys
 from setuptools import setup
 
-version = '2.1.0'
+version = '2.2.0'
 
 try:
     sys.argv.remove("--cython-compile")