summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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):