summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Halley <halley@nominum.com>2011-07-13 12:58:09 -0700
committerBob Halley <halley@nominum.com>2011-07-13 12:58:09 -0700
commit8914cd4936c5a16ccb61a8b3ee8d1362b282e61d (patch)
tree86e07a4e0b6914b70a406ab53ca0102f087d1ff9
parent37884a38dd59f643862262df386c8971aeb0f70f (diff)
downloaddnspython-8914cd4936c5a16ccb61a8b3ee8d1362b282e61d.tar.gz
the next version will be 1.10.0
-rw-r--r--README2
-rw-r--r--dns/version.py4
-rwxr-xr-xsetup.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/README b/README
index ae201dc..367e7a2 100644
--- a/README
+++ b/README
@@ -22,7 +22,7 @@ development by continuing to employ the author :).
ABOUT THIS RELEASE
-This is dnspython 1.9.5
+This is dnspython 1.10.0
New since 1.9.4:
diff --git a/dns/version.py b/dns/version.py
index 6539cfc..7de430b 100644
--- a/dns/version.py
+++ b/dns/version.py
@@ -16,8 +16,8 @@
"""dnspython release version information."""
MAJOR = 1
-MINOR = 9
-MICRO = 5
+MINOR = 10
+MICRO = 0
RELEASELEVEL = 0x0f
SERIAL = 0
diff --git a/setup.py b/setup.py
index 461bc0d..33d7c20 100755
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@
import sys
from distutils.core import setup
-version = '1.9.5'
+version = '1.10.0'
kwargs = {
'name' : 'dnspython',