From 88065d0ef2551cc4023efb432fe2ec5248b605a4 Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Tue, 16 May 2023 21:47:06 -0400 Subject: [PATCH] Release 2.0.1 --- CHANGELOG.rst | 9 +++++++++ news/137.bugfix.rst | 1 - src/pythonfinder/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) delete mode 100644 news/137.bugfix.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ac5aa05..829570f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,12 @@ +2.0.1 (2023-05-16) +================== + +Bug Fixes +--------- + +- Corrected ``asdf`` and ``pyenv`` detection and usage which broke with the release of ``pythonfinder==2.0.0`` `#137 `_ + + 2.0.0 (2023-05-06) ================== diff --git a/news/137.bugfix.rst b/news/137.bugfix.rst deleted file mode 100644 index 0bc110c..0000000 --- a/news/137.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Corrected ``asdf`` and ``pyenv`` detection and usage which broke with the release of ``pythonfinder==2.0.0`` diff --git a/src/pythonfinder/__init__.py b/src/pythonfinder/__init__.py index 0b43e30..116f95c 100644 --- a/src/pythonfinder/__init__.py +++ b/src/pythonfinder/__init__.py @@ -4,7 +4,7 @@ from .models import SystemPath from .pythonfinder import Finder -__version__ = "2.0.1.dev0" +__version__ = "2.0.1" __all__ = ["Finder", "SystemPath", "InvalidPythonVersion"]