diff --git a/CHANGELOG.md b/CHANGELOG.md index d7d10c7e0..18ebdac3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## [1.1.0rc2] - 2022-08-26 + +### Changed +- Enabled setting `version` of `ProjectPackage` to support dynamically setting the project's package version (e.g. from a plugin) ([#447](https://github.com/python-poetry/poetry-core/pull/447)). + +### Fixed + +- Fixed an issue where `authors` property was not detected ([#437](https://github.com/python-poetry/poetry-core/pull/437)). +- Fixed an issue where submodules of git dependencies was not checked out ([#439](https://github.com/python-poetry/poetry-core/pull/439)). +- Fixed an issue with Python constraints from markers ([#448](https://github.com/python-poetry/poetry-core/pull/448)). +- Fixed an issue where the latest version of git dependency was selected instead of the locked one ([#449](https://github.com/python-poetry/poetry-core/pull/449)). + + ## [1.1.0rc1] - 2022-08-17 ### Changed @@ -342,7 +355,8 @@ No changes. - Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)). -[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0rc1...main +[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0rc2...main +[1.1.0rc2]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0rc2 [1.1.0rc1]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0rc1 [1.1.0b3]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0b3 [1.1.0b2]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0b2 diff --git a/pyproject.toml b/pyproject.toml index b3713cdea..d082d96f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-core" -version = "1.1.0rc1" +version = "1.1.0rc2" description = "Poetry PEP 517 Build Backend" authors = ["Sébastien Eustace "] diff --git a/src/poetry/core/__init__.py b/src/poetry/core/__init__.py index ae996ea33..82f90b9d4 100644 --- a/src/poetry/core/__init__.py +++ b/src/poetry/core/__init__.py @@ -7,7 +7,7 @@ # this cannot presently be replaced with importlib.metadata.version as when building # itself, poetry-core is not available as an installed distribution. -__version__ = "1.1.0rc1" +__version__ = "1.1.0rc2" __vendor_site__ = (Path(__file__).parent / "_vendor").as_posix()