Skip to content

Commit 7e4d449

Browse files
committed
Bump version to v0.7.0-dev
1 parent 236d0b3 commit 7e4d449

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

ChangeLog.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
v0.6.1:
1+
v0.7:
22
* Add backported Py3-like int object (inherits from long)
33
* Fixes and stricter type-checking for bytes and str objects
44
* Add docs about isinstance() and utility functions for type-checking
5-
* Don't disable obsolete Py2 builtins by default with ``from * future.builtins import *``
5+
* Add many more tests for futurize script
6+
* Don't disable obsolete Py2 builtins by default with ``from future.builtins import *``. Use ``from future.builtins.disabled import *`` instead.
67
v0.6:
78
* Add backported Py3-like str object (inherits from unicode)
89
* Remove support for deprecated form ``from future import *``: use ``from future.builtins import *`` instead

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# sys.exit(1)
6161
# if 'dev' in release:
6262
# release = release.split('dev')[0] + 'dev'
63-
release = '0.6.0'
63+
release = '0.7.0-dev'
6464
version = '.'.join(release.split('.')[:2])
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation

future/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@
8181
__all__ = []
8282

8383
__ver_major__ = 0
84-
__ver_minor__ = 6
85-
__ver_patch__ = 1
84+
__ver_minor__ = 7
85+
__ver_patch__ = 0
8686
__ver_sub__ = '-dev'
8787
__version__ = "%d.%d.%d%s" % (__ver_major__, __ver_minor__,
8888
__ver_patch__, __ver_sub__)

0 commit comments

Comments
 (0)