diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 829570f..ebf3a2d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,12 @@ +2.0.2 (2023-05-19) +================== + +Bug Fixes +--------- + +- Fix edge case with windows git bash and environment variables having backslash. `#138 `_ + + 2.0.1 (2023-05-16) ================== diff --git a/news/138.bugfix.rst b/news/138.bugfix.rst deleted file mode 100644 index 352f017..0000000 --- a/news/138.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix edge case with windows git bash and environment variables having backslash. diff --git a/src/pythonfinder/__init__.py b/src/pythonfinder/__init__.py index 31d1278..95dba3c 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.2.dev0" +__version__ = "2.0.2" __all__ = ["Finder", "SystemPath", "InvalidPythonVersion"]