diff --git a/NEWS b/NEWS index 2294c096..cf2e396c 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,15 @@ +uncompyle6 2.15.0 2017-01-27 + +- Add --linemap option to give line correspondences + between original source lines and reconstructed line sources. + It is far from perfect, but it is a start +- Add a new class of tests: tests which when decompiled check themselves +- Split off Python version semantic action customizations into its own file +- Fix 2.7 bug in ifelse loop statement +- Handle 3.6+ EXTENDED_ARGs for POP_JUMP_IF... instructions +- Correct 3.6+ calls with kwargs +- Describe the difficulty of 3.6 in README + uncompyle6 2.14.3 2017-01-19 - Fix bug in 3.5+ await stmt diff --git a/admin-tools/how-to-make-a-release.md b/admin-tools/how-to-make-a-release.md index 320fc44e..2c9430f0 100644 --- a/admin-tools/how-to-make-a-release.md +++ b/admin-tools/how-to-make-a-release.md @@ -17,7 +17,7 @@ # Get latest sources: - $ . ./admin-tool/update-sources.sh + git pull # Change version in uncompyle6/version.py: diff --git a/uncompyle6/version.py b/uncompyle6/version.py index 2f0cbf98..5d1865b8 100644 --- a/uncompyle6/version.py +++ b/uncompyle6/version.py @@ -1,3 +1,3 @@ # This file is suitable for sourcing inside bash as # well as importing into Python -VERSION='2.14.3' +VERSION='2.15.0'