diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f909e35..265549f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,14 @@ +1.3.2 (2023-02-06) +================== + +Bug Fixes +--------- + +- Include tests and tests data into the sdist. `#116 `_ + +- Fix: catch `InvalidVersion` instead of handling `LegacyVersion` `#127 `_ + + 1.3.0 (2022-24-08) ================== Bug fixes diff --git a/src/pythonfinder/__init__.py b/src/pythonfinder/__init__.py index 664999d..b5614a2 100644 --- a/src/pythonfinder/__init__.py +++ b/src/pythonfinder/__init__.py @@ -10,7 +10,7 @@ from .models import SystemPath, WindowsFinder from .pythonfinder import Finder -__version__ = "1.3.2.dev0" +__version__ = "1.3.2" logger = logging.getLogger(__name__)