]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
2.0.0 versioning v2.0.0
authorBob Halley <halley@dnspython.org>
Thu, 16 Jul 2020 14:30:11 +0000 (07:30 -0700)
committerBob Halley <halley@dnspython.org>
Thu, 16 Jul 2020 14:30:11 +0000 (07:30 -0700)
README.md
dns/version.py
pyproject.toml
setup.py

index d5a01ca708caf85ac9b33974acda9f8f45f6d6fa..7c6bd2e8898f6033c6a22f710eab55e406b7b6f7 100644 (file)
--- a/README.md
+++ b/README.md
@@ -31,7 +31,7 @@ to facilitate the testing of DNS software.
 
 ## ABOUT THIS RELEASE
 
-This is the development version of dnspython 2.0.0.
+This is 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 ddd24f5ffde5f647c254bb27ec40e5a00165f151..0b7c1d1308cf69b1f8e66b8fbec68df48416e241 100644 (file)
@@ -24,9 +24,9 @@ MINOR = 0
 #: MICRO
 MICRO = 0
 #: RELEASELEVEL
-RELEASELEVEL = 0x00
+RELEASELEVEL = 0x0f
 #: SERIAL
-SERIAL = 3
+SERIAL = 0
 
 if RELEASELEVEL == 0x0f:  # pragma: no cover
     #: version
index e4f5e5df59f4ca2a68731aea2528ede58639a499..053b79c954a4e843fdc2d64dc6a6770a1f75d6c6 100644 (file)
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "dnspython"
-version = "2.0.0dev3"
+version = "2.0.0"
 description = "DNS toolkit"
 authors = ["Bob Halley <halley@dnspython.org>"]
 license = "ISC"
index 2090ac6592f524503304eca8ce98ba2a2a79db00..cd1be21a6ce1762f031db9ff7cd5f359a52b835e 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@
 import sys
 from setuptools import setup
 
-version = '2.0.0dev3'
+version = '2.0.0'
 
 try:
     sys.argv.remove("--cython-compile")