]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
set rc1 in version
authorBob Halley <halley@dnspython.org>
Tue, 16 Jun 2020 15:33:12 +0000 (08:33 -0700)
committerBob Halley <halley@dnspython.org>
Tue, 16 Jun 2020 15:33:12 +0000 (08:33 -0700)
dns/version.py
pyproject.toml
setup.py

index a80242fa7b8369db52a4d62460ca92a04dcb4498..4494d399c383e804958d4165417759b7c8958430 100644 (file)
@@ -24,9 +24,9 @@ MINOR = 0
 #: MICRO
 MICRO = 0
 #: RELEASELEVEL
-RELEASELEVEL = 0x0f
+RELEASELEVEL = 0x0c
 #: SERIAL
-SERIAL = 0
+SERIAL = 1
 
 if RELEASELEVEL == 0x0f:
     #: version
@@ -34,6 +34,9 @@ if RELEASELEVEL == 0x0f:
 elif RELEASELEVEL == 0x00:
     version = '%d.%d.%dx%d' % \
               (MAJOR, MINOR, MICRO, SERIAL)
+elif RELEASELEVEL == 0x0c:
+    version = '%d.%d.%drc%d' % \
+              (MAJOR, MINOR, MICRO, SERIAL)
 else:
     version = '%d.%d.%d%x%d' % \
               (MAJOR, MINOR, MICRO, RELEASELEVEL, SERIAL)
index f2d28bbf027831fe1531bd87621534bde19cfa2f..793e55f7f582bd730db0e4ea3ba31fa6b8bb1c22 100644 (file)
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "dnspython"
-version = "2.0.0"
+version = "2.0.0rc1"
 description = "DNS toolkit"
 authors = ["Bob Halley <halley@dnspython.org>"]
 license = "ISC"
index 496642f49bf0982ad363786d15f345f39e937b86..226e102dcccac4cd7a3a6925f35e523b57a379b8 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@
 import sys
 from setuptools import setup
 
-version = '2.0.0'
+version = '2.0.0rc1'
 
 try:
     sys.argv.remove("--cython-compile")