## 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.
#: 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
[tool.poetry]
name = "dnspython"
-version = "2.0.0"
+version = "2.1.0dev1"
description = "DNS toolkit"
authors = ["Bob Halley <halley@dnspython.org>"]
license = "ISC"
import sys
from setuptools import setup
-version = '2.0.0'
+version = '2.1.0dev1'
try:
sys.argv.remove("--cython-compile")