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"]