diff --git a/CHANGELOG.md b/CHANGELOG.md index fab4021..f230a89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog for Thoth's micropipenv +## [1.2.0] - 2021-December-06 - Fridolin Pokorny + +### Added + +* micropipenv is no longer tested with Python 3.6 and development pip + Contribution thanks to @frenzymadness + +* Support directory-based dependencies + Contribution thanks to @abompard + +* micropipenv warns users if they use Poetry lockfiles and Python + version is not checked by micropipenv + Contribution thanks to @frenzymadness + ## [1.1.3] - 2021-October-20 - Fridolin Pokorny ### Added diff --git a/micropipenv.py b/micropipenv.py index c29fe01..9a2942a 100755 --- a/micropipenv.py +++ b/micropipenv.py @@ -28,7 +28,7 @@ issue `python3 -m venv venv/ && . venv/bin/activate` to create one. """ -__version__ = "1.1.3" +__version__ = "1.2.0" __author__ = "Fridolin Pokorny " __title__ = "micropipenv"