diff --git a/ChangeLog b/ChangeLog index 9f3b8c13..ea8f4f5e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,77 @@ +2016-05-05 rocky + + * uncompyle6/version.py: Get ready for release 2.3.4 + +2016-05-05 rocky + + * .travis.yml: Remove pypy3 add python 3.2 testing Reorder list for testing preference + +2016-05-05 rocky + + * .travis.yml: Remove pypy + +2016-05-05 rocky + + * Makefile, test/Makefile, uncompyle6/semantics/pysource.py: Fix up + 3.2 tests Remove pypy + +2016-05-05 rocky + + * .travis.yml: Try pypy and pypy3 + +2016-05-05 rocky + + * test/simple_source/def/05_abc_class.py, + test/simple_source/def/06_classbug.py, uncompyle6/parsers/parse3.py: + Python 3.5 abc.py bug distilled + +2016-05-05 rocky + + * uncompyle6/scanners/dis35.py, uncompyle6/scanners/scanner35.py: + Add cross-Python-protable 3.5 dis module + +2016-05-04 rocky + + * test/simple_source/stmts/05_with.py, + uncompyle6/opcodes/opcode_35.py, uncompyle6/parser.py, + uncompyle6/parsers/parse3.py, uncompyle6/scanners/scanner35.py: + Handle 3.5 with [as] scanner35.py: Fix a small variable-name typo + 2016-05-03 rocky - * uncompyle6/version.py: Get ready for release 2.3.3 + * : One more test + +2016-05-03 rocky + + * uncompyle6/scanners/scanner3.py, + uncompyle6/scanners/scanner34.py, uncompyle6/scanners/scanner35.py: + Don't repeat next_except_jump + +2016-05-03 rocky + + * __pkginfo__.py, requirements.txt: Wrong package name + +2016-05-03 rocky + + * __pkginfo__.py, requirements.txt, setup.py: More package + administrivia + +2016-05-03 rocky + + * uncompyle6/scanner.py: Remove one more old-style Python class + +2016-05-03 rocky + + * uncompyle6/scanners/scanner27.py: DRY Python 2.7 scanner more + +2016-05-03 rocky + + * MANIFEST.in: Include LICENSE in package + +2016-05-03 rocky + + * ChangeLog, NEWS, uncompyle6/version.py: Get ready for release + 2.3.3 2016-05-02 rocky diff --git a/NEWS b/NEWS index a009bdd5..051f79e7 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +uncompyle6 2.3.4 2016-05-5 + +- More Python 3.5 parsing bugs addressed +- decompiling Python 3.5 from other Python versions works +- test from Python 3.2 +- remove "__module__ = __name__" in 3.0 <= Python 3.2 + uncompyle6 2.3.3 2016-05-3 - Fix bug in running uncompyle6 script on Python 3 diff --git a/uncompyle6/version.py b/uncompyle6/version.py index f343f9fe..7fe85be2 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.3.3' +VERSION='2.3.4'