diff --git a/CHANGES b/CHANGES index 12e5efc..7614e7c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,11 @@ +**1.2.0 (2017.12.24)** + +* Lazily load parsers to speed up import time. +* Don't raise import error on non-linux os. +* Decode stdout of shell sys.getfilesystemencoding(). +* Explicitly set Python versions for flake8 tests. + + **1.1.0 (2017.11.28)** Note: This version removes official support for Python 2.6. If you need a version that is tested on Python 2.6, please use `distro<=1.0.4`. diff --git a/setup.py b/setup.py index f19abe1..c140bc3 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ # The following version is parsed by other parts of this package. # Don't change the format of the line, or the variable name. -package_version = "1.1.0" +package_version = "1.2.0" here = os.path.abspath(os.path.dirname(__file__))