File tree Expand file tree Collapse file tree 4 files changed +21
-5
lines changed
Expand file tree Collapse file tree 4 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 5252#
5353# if 'dev' in release:
5454# release = release.split('dev')[0] + 'dev'
55- release = '0.12.2 '
55+ release = '0.12.3-dev '
5656version = release # was: '.'.join(release.split('.')[:2])
5757
5858# The language for content autogenerated by Sphinx. Refer to documentation
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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__ )
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments