Skip to content

Commit adcb3e7

Browse files
committed
Bump version number to v0.12.3-dev and add What's New entry for v0.12.3
1 parent f7f0394 commit adcb3e7

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
#
5353
# if 'dev' in release:
5454
# release = release.split('dev')[0] + 'dev'
55-
release = '0.12.2'
55+
release = '0.12.3-dev'
5656
version = release # was: '.'.join(release.split('.')[:2])
5757

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

docs/whatsnew.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@ What's New in v0.12.x
22
*********************
33

44

5+
.. whats-new-0.12.3:
6+
7+
What's new in version 0.12.3
8+
============================
9+
10+
- Add ``--version`` option for ``futurize`` and ``pasteurize`` scripts (issue #57)
11+
- Testing fixes:
12+
- Don't hard-code Python interpreter command in tests (issue #62). (Patch
13+
contributed by Elliott Sales de Andrade.)
14+
- Fix deprecated ``unittest`` usage in Py3 (also issue #62). (Patch
15+
contributed by Elliott Sales de Andrade.)
16+
- Be explicit about encoding temporary file contents as UTF-8 for
17+
when LANG=C (e.g. when building an RPM) (issue #63).
18+
- Docs: add list of fixers used by ``futurize``
19+
- Docs: add list of contributors to credits page
20+
521
.. whats-new-0.12.2:
622
723
What's new in version 0.12.2

future/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
__copyright__ = 'Copyright 2014 Python Charmers Pty Ltd'
7474
__ver_major__ = 0
7575
__ver_minor__ = 12
76-
__ver_patch__ = 2
77-
__ver_sub__ = ''
76+
__ver_patch__ = 3
77+
__ver_sub__ = '-dev'
7878
__version__ = "%d.%d.%d%s" % (__ver_major__, __ver_minor__,
7979
__ver_patch__, __ver_sub__)

past/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@
103103
__copyright__ = 'Copyright 2014 Python Charmers Pty Ltd'
104104
__ver_major__ = 0
105105
__ver_minor__ = 12
106-
__ver_patch__ = 2
107-
__ver_sub__ = ''
106+
__ver_patch__ = 3
107+
__ver_sub__ = '-dev'
108108
__version__ = "%d.%d.%d%s" % (__ver_major__, __ver_minor__,
109109
__ver_patch__, __ver_sub__)
110110

0 commit comments

Comments
 (0)