From 259f75f5d987a310f4174b9b0b69b21ae2ae7e62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Randy=20D=C3=B6ring?= <30527984+radoering@users.noreply.github.com> Date: Wed, 24 Jul 2024 17:40:53 +0200 Subject: [PATCH] release: bump version to 1.4.0 --- CHANGELOG.md | 16 +++++++++++++++- pyproject.toml | 2 +- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 169d1c6..f35a9fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ # Change Log +## [1.4.0] - 2024-07-26 + +### Added + +- Add a `--compile` option analogous to `poetry install` ([#88](https://github.com/python-poetry/poetry-plugin-bundle/pull/88)). + +### Changed + +- Drop support for Python 3.7 ([#66](https://github.com/python-poetry/poetry-plugin-bundle/pull/66)). +- Install all dependencies as non-editable ([#106](https://github.com/python-poetry/poetry-plugin-bundle/pull/106)). +- Use same logic as `poetry install` to determine the Python version if not provided explicitly ([#103](https://github.com/python-poetry/poetry-plugin-bundle/pull/103)). + + ## [1.3.0] - 2023-05-29 ### Added @@ -31,7 +44,8 @@ Initial version. -[Unreleased]: https://github.com/python-poetry/poetry-plugin-bundle/compare/1.3.0...main +[Unreleased]: https://github.com/python-poetry/poetry-plugin-bundle/compare/1.4.0...main +[1.4.0]: https://github.com/python-poetry/poetry-plugin-bundle/releases/tag/1.4.0 [1.3.0]: https://github.com/python-poetry/poetry-plugin-bundle/releases/tag/1.3.0 [1.2.0]: https://github.com/python-poetry/poetry-plugin-bundle/releases/tag/1.2.0 [1.1.0]: https://github.com/python-poetry/poetry-plugin-bundle/releases/tag/1.1.0 diff --git a/pyproject.toml b/pyproject.toml index 33fb76f..f58a2be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-plugin-bundle" -version = "1.3.0" +version = "1.4.0" description = "Poetry plugin to bundle projects into various formats" authors = ["Sébastien Eustace "] license = "MIT"