diff --git a/CHANGELOG.md b/CHANGELOG.md index 86f9642..9d13b51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog for Thoth's micropipenv +## [1.8.0] - 2024-Aug-01 - Lumír Balhar + +### Added + +* Test with pip=24.2 + +### Fixed + +* Support for `[[tool.poetry.source]]` without any URL +* Terminal condition for possible endless loops in the implementation of default/devel package groups + ## [1.7.0] - 2024-Jun-21 - Lumír Balhar ### Added diff --git a/micropipenv.py b/micropipenv.py index f721b4f..916f4bc 100755 --- a/micropipenv.py +++ b/micropipenv.py @@ -28,7 +28,7 @@ issue `python3 -m venv venv/ && . venv/bin/activate` to create one. """ -__version__ = "1.7.0" +__version__ = "1.8.0" __author__ = "Fridolin Pokorny " __title__ = "micropipenv"