summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2016-05-18 21:16:56 +1200
committerRobert Collins <robertc@robertcollins.net>2016-05-18 21:16:56 +1200
commite3b5a1b7bd0510a8bdd1cc0cf7933df28012d147 (patch)
tree9285124b152409785b284de6749ce752582f98d1
parentd3a80f0ecd2c24c9d849a907ffe4680933a76b68 (diff)
downloadpython-test-extras-e3b5a1b7bd0510a8bdd1cc0cf7933df28012d147.tar.gz
Release 1.0.0.1.0.0
-rw-r--r--NEWS3
-rw-r--r--extras/__init__.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index ab593b6..e71bf13 100644
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,9 @@ Changes and improvements to extras_, grouped by release.
NEXT
~~~~
+1.0.0
+~~~~~
+
* Imports in the middle of import cycles are now supported.
(Robert Collins)
diff --git a/extras/__init__.py b/extras/__init__.py
index 29d2230..e453bc9 100644
--- a/extras/__init__.py
+++ b/extras/__init__.py
@@ -22,7 +22,7 @@ __all__ = [
# If the releaselevel is 'final', then the tarball will be major.minor.micro.
# Otherwise it is major.minor.micro~$(revno).
-__version__ = (0, 0, 3, 'final', 0)
+__version__ = (1, 0, 0, 'final', 0)
def try_import(name, alternative=None, error_callback=None):