summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2020-10-30 09:20:23 -0700
committerBob Halley <halley@dnspython.org>2020-10-30 09:20:23 -0700
commita282788b29258a2dda582e7ce17583dca61fa8cf (patch)
tree357483dee04fac2b926ddb36f520a1750ba50b9b
parentee12ebcddcdc0732c5c141ebae481a1877b5a1b3 (diff)
downloaddnspython-a282788b29258a2dda582e7ce17583dca61fa8cf.tar.gz
update versions for 2.1.0rc1
-rw-r--r--dns/version.py2
-rw-r--r--doc/whatsnew.rst2
-rw-r--r--pyproject.toml2
-rwxr-xr-xsetup.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/dns/version.py b/dns/version.py
index cf2184b..4bae41d 100644
--- a/dns/version.py
+++ b/dns/version.py
@@ -24,7 +24,7 @@ MINOR = 1
#: MICRO
MICRO = 0
#: RELEASELEVEL
-RELEASELEVEL = 0x00
+RELEASELEVEL = 0x0c
#: SERIAL
SERIAL = 1
diff --git a/doc/whatsnew.rst b/doc/whatsnew.rst
index 84e633c..d6b260b 100644
--- a/doc/whatsnew.rst
+++ b/doc/whatsnew.rst
@@ -3,7 +3,7 @@
What's New in dnspython
=======================
-2.1.0 (in development)
+2.1.0rc1
----------------------
* End-of-line comments are now associated with rdata when read from text.
diff --git a/pyproject.toml b/pyproject.toml
index 3754007..ed2d9c1 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dnspython"
-version = "2.1.0dev1"
+version = "2.1.0rc1"
description = "DNS toolkit"
authors = ["Bob Halley <halley@dnspython.org>"]
license = "ISC"
diff --git a/setup.py b/setup.py
index d7d965d..5df5f25 100755
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@
import sys
from setuptools import setup
-version = '2.1.0dev1'
+version = '2.1.0rc1'
try:
sys.argv.remove("--cython-compile")