diff --git a/CHANGES.rst b/CHANGES.rst index fa242f8fb..e3edc3c5d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,28 @@ CHANGES ======= +----- +1.1.3 +----- + +This release includes an initial body of work towards Windows support, ABI tag support for CPython 2.x and a fix for version number normalization. + +* Add python 2.x abi tag support. + `#214 `_ + `Fixes #213 `_ + +* Add .idea to .gitignore. + `#205 `_ + +* Don't normalize version numbers as names. + `#204 `_ + +* More fixes for windows. + `#202 `_ + +* Fixes to get pex to work on windows. + `#198 `_ + ----- 1.1.2 ----- diff --git a/pex/version.py b/pex/version.py index 51862fa63..bcc958dd8 100644 --- a/pex/version.py +++ b/pex/version.py @@ -1,7 +1,7 @@ # Copyright 2015 Pants project contributors (see CONTRIBUTORS.md). # Licensed under the Apache License, Version 2.0 (see LICENSE). -__version__ = '1.1.2' +__version__ = '1.1.3' SETUPTOOLS_REQUIREMENT = 'setuptools>=2.2,<20' WHEEL_REQUIREMENT = 'wheel>=0.24.0,<0.27.0'