diff --git a/CHANGELOG.md b/CHANGELOG.md index b916085ba..a9d283a82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [1.1.0] - 2022-08-31 + +- No functional changes. + ## [1.1.0rc3] - 2022-08-26 ### Fixed @@ -361,7 +365,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.0rc3...main +[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0...main +[1.1.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0 [1.1.0rc3]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0rc3 [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 diff --git a/pyproject.toml b/pyproject.toml index 27e029e68..b705682ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-core" -version = "1.1.0rc3" +version = "1.1.0" 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 798acc771..35854e9a5 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.0rc3" +__version__ = "1.1.0" __vendor_site__ = (Path(__file__).parent / "_vendor").as_posix()