From 2b0530a21566dc30cc757355259584400d10cb3f Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Sun, 4 Nov 2018 02:16:07 -0500 Subject: [PATCH] Release 1.1.7 --- CHANGELOG.rst | 17 +++++++++++++++++ news/24.bugfix.rst | 1 - news/26.bugfix.rst | 1 - news/27.feature.rst | 1 - src/pythonfinder/__init__.py | 2 +- 5 files changed, 18 insertions(+), 4 deletions(-) delete mode 100644 news/24.bugfix.rst delete mode 100644 news/26.bugfix.rst delete mode 100644 news/27.feature.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1b20ad2..46b4312 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,20 @@ +1.1.7 (2018-11-04) +================== + +Features & Improvements +----------------------- + +- Pyenv paths will now be ordered respecting global version settings and pyenv shims will be removed from the search path. `#27 `_ + + +Bug Fixes +--------- + +- Fixed an issue with unnesting paths when finding python versions. `#24 `_ + +- Fixed a bug with searching windows registry entries which sometimes caused errors for uninstalled python instances. `#26 `_ + + 1.1.6 (2018-10-26) ================== diff --git a/news/24.bugfix.rst b/news/24.bugfix.rst deleted file mode 100644 index fc8342f..0000000 --- a/news/24.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed an issue with unnesting paths when finding python versions. diff --git a/news/26.bugfix.rst b/news/26.bugfix.rst deleted file mode 100644 index fc6cfdf..0000000 --- a/news/26.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug with searching windows registry entries which sometimes caused errors for uninstalled python instances. diff --git a/news/27.feature.rst b/news/27.feature.rst deleted file mode 100644 index fa19e8f..0000000 --- a/news/27.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Pyenv paths will now be ordered respecting global version settings and pyenv shims will be removed from the search path. diff --git a/src/pythonfinder/__init__.py b/src/pythonfinder/__init__.py index dbc0026..0b22546 100644 --- a/src/pythonfinder/__init__.py +++ b/src/pythonfinder/__init__.py @@ -1,6 +1,6 @@ from __future__ import print_function, absolute_import -__version__ = '1.1.7.dev0' +__version__ = '1.1.7' # Add NullHandler to "pythonfinder" logger, because Python2's default root # logger has no handler and warnings like this would be reported: