From faaa1136775ce314300551a1b287e85af375d583 Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Thu, 18 Oct 2018 00:58:57 -0400 Subject: [PATCH 1/2] Release 1.1.3 --- CHANGELOG.rst | 19 +++++++++++++++++++ news/19.bugfix.rst | 1 - news/20.feature.rst | 1 - news/21.feature.rst | 3 --- src/pythonfinder/__init__.py | 2 +- 5 files changed, 20 insertions(+), 6 deletions(-) delete mode 100644 news/19.bugfix.rst delete mode 100644 news/20.feature.rst delete mode 100644 news/21.feature.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4299142..a7b7d4d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,22 @@ +1.1.3 (2018-10-18) +================== + +Features & Improvements +----------------------- + +- Introduced lookup by name when searching for python versions, which allows searching for non-standard python releases such as ``anaconda3-5.3.0``. `#20 `_ + +- General improvements: + - Improved ``pyenv`` support and architecture lookup support. + - Improved overall performance and caching. `#21 `_ + + +Bug Fixes +--------- + +- Switch to using ``--ignore-unsupported`` by default during lookups. `#19 `_ + + 1.1.2 (2018-10-12) ================== diff --git a/news/19.bugfix.rst b/news/19.bugfix.rst deleted file mode 100644 index f525d53..0000000 --- a/news/19.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Switch to using ``--ignore-unsupported`` by default during lookups. diff --git a/news/20.feature.rst b/news/20.feature.rst deleted file mode 100644 index 68addc7..0000000 --- a/news/20.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Introduced lookup by name when searching for python versions, which allows searching for non-standard python releases such as ``anaconda3-5.3.0``. diff --git a/news/21.feature.rst b/news/21.feature.rst deleted file mode 100644 index 080d79f..0000000 --- a/news/21.feature.rst +++ /dev/null @@ -1,3 +0,0 @@ -General improvements: - - Improved ``pyenv`` support and architecture lookup support. - - Improved overall performance and caching. diff --git a/src/pythonfinder/__init__.py b/src/pythonfinder/__init__.py index 177c65f..9ac6031 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.3.dev0' +__version__ = '1.1.3' # Add NullHandler to "pythonfinder" logger, because Python2's default root # logger has no handler and warnings like this would be reported: From f23b75d296b10011b1b20d09f0cf208e61d4bb38 Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Thu, 18 Oct 2018 00:59:03 -0400 Subject: [PATCH 2/2] Prebump to 1.1.4.dev0 --- src/pythonfinder/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pythonfinder/__init__.py b/src/pythonfinder/__init__.py index 9ac6031..4ac994c 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.3' +__version__ = '1.1.4.dev0' # Add NullHandler to "pythonfinder" logger, because Python2's default root # logger has no handler and warnings like this would be reported: