Release 1.0.0.

This commit is contained in:
Robert Collins 2016-05-18 21:16:56 +12:00
parent d3a80f0ecd
commit e3b5a1b7bd
2 changed files with 4 additions and 1 deletions

3
NEWS
View File

@ -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)

View File

@ -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):