Skip to content

Commit

Permalink
release: bump version to 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
radoering committed Sep 16, 2022
1 parent f47f2aa commit b69c7a0
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 13 deletions.
34 changes: 33 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# Change Log

## [1.2.1] - 2022-09-16

### Fixed

- Fix an issue where `poetry cache clear` did not respect the `--no-interaction` flag ([#6338](https://github.com/python-poetry/poetry/pull/6338))
- Fix an issue where `poetry lock --no-update` updated dependencies from private package sources ([#6335](https://github.com/python-poetry/poetry/pull/6335))
- Fix a performance regression of `poetry install` ([#6062](https://github.com/python-poetry/poetry/pull/6062))
- Fix an issue where a virtual environment was created unnecessarily when running `poetry export` ([#6282](https://github.com/python-poetry/poetry/pull/6282))
- Fix virtualenv constraint ([#6402](https://github.com/python-poetry/poetry/pull/6402))
- Fix an issue where `poetry lock --no-update` added duplicate hashes to the lock file ([#6389](https://github.com/python-poetry/poetry/pull/6389))
- Fix an issue where `poetry install` fails because of missing hashes for `url` dependencies ([#6389](https://github.com/python-poetry/poetry/pull/6389))
- Fix an issue where Poetry was not able to update pip in virtualenv on Windows ([#6430](https://github.com/python-poetry/poetry/pull/6430))
- Fix an issue where Poetry was not able to install packages with links other than sdist and bdist_wheel on PyPI ([#5767](https://github.com/python-poetry/poetry/pull/5767))
- Fix a performance regression of `poetry lock` with private packages sources ([#6442](https://github.com/python-poetry/poetry/pull/6442))
- Fix an issue where `--no-cache` was not respected when running `poetry install` ([#6479](https://github.com/python-poetry/poetry/pull/6479))
- Fix an issue where deprecation warnings for `--dev` were missing ([#6475](https://github.com/python-poetry/poetry/pull/6475))
- Fix outdated build system requirements ([#6509](https://github.com/python-poetry/poetry/pull/6509))
- Fix an issue where git dependencies failed to clone when `insteadOf` was used in git config ([#6506](https://github.com/python-poetry/poetry/pull/6506))
- Fix an issue where no cache entry is found when calling poetry cache clear with an unnormalized package name ([#6537](https://github.com/python-poetry/poetry/pull/6537))

### Docs

- Add missing venv path segment to paths used by install.python-poetry.org ([#6311](https://github.com/python-poetry/poetry/pull/6311))
- Add some recommendations about how to install Poetry into an CI environment ([#6345](https://github.com/python-poetry/poetry/pull/6345))
- Fix example for `--with` and `--without` ([#6318](https://github.com/python-poetry/poetry/pull/6318))
- Update configuration folder for macOS ([#6395](https://github.com/python-poetry/poetry/pull/6395))
- Improve description of `virtualenv.create` ([#6460](https://github.com/python-poetry/poetry/pull/6460))
- Clarify that `poetry install` removes dependencies of non-installed extras ([#6229](https://github.com/python-poetry/poetry/pull/6229))
- Add note about `pre-commit autoupdate` ([#6497](https://github.com/python-poetry/poetry/pull/6497))


## [1.2.0] - 2022-08-31

### Docs
Expand Down Expand Up @@ -1509,7 +1540,8 @@ Initial release



[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.0...master
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.1...master
[1.2.1]: https://github.com/python-poetry/poetry/releases/tag/1.2.1
[1.2.0]: https://github.com/python-poetry/poetry/releases/tag/1.2.0
[1.2.0rc2]: https://github.com/python-poetry/poetry/releases/tag/1.2.0rc2
[1.2.0rc1]: https://github.com/python-poetry/poetry/releases/tag/1.2.0rc1
Expand Down
18 changes: 9 additions & 9 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "poetry"
version = "1.2.0"
version = "1.2.1"
description = "Python dependency management and packaging made easy."
authors = [
"Sébastien Eustace <sebastien@eustace.io>",
Expand Down Expand Up @@ -44,8 +44,8 @@ generate-setup-file = false
[tool.poetry.dependencies]
python = "^3.7"

poetry-core = "1.1.0"
poetry-plugin-export = "^1.0.6"
poetry-core = "1.2.0"
poetry-plugin-export = "^1.0.7"
"backports.cached-property" = { version = "^1.0.2", python = "<3.8" }
cachecontrol = { version = "^0.12.9", extras = ["filecache"] }
cachy = "^0.3.0"
Expand Down

0 comments on commit b69c7a0

Please sign in to comment.