Skip to content

Commit b69c7a0

Browse files
committed
release: bump version to 1.2.1
1 parent f47f2aa commit b69c7a0

File tree

3 files changed

+45
-13
lines changed

3 files changed

+45
-13
lines changed

CHANGELOG.md

+33-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Change Log
22

3+
## [1.2.1] - 2022-09-16
4+
5+
### Fixed
6+
7+
- Fix an issue where `poetry cache clear` did not respect the `--no-interaction` flag ([#6338](https://github.com/python-poetry/poetry/pull/6338))
8+
- Fix an issue where `poetry lock --no-update` updated dependencies from private package sources ([#6335](https://github.com/python-poetry/poetry/pull/6335))
9+
- Fix a performance regression of `poetry install` ([#6062](https://github.com/python-poetry/poetry/pull/6062))
10+
- Fix an issue where a virtual environment was created unnecessarily when running `poetry export` ([#6282](https://github.com/python-poetry/poetry/pull/6282))
11+
- Fix virtualenv constraint ([#6402](https://github.com/python-poetry/poetry/pull/6402))
12+
- Fix an issue where `poetry lock --no-update` added duplicate hashes to the lock file ([#6389](https://github.com/python-poetry/poetry/pull/6389))
13+
- Fix an issue where `poetry install` fails because of missing hashes for `url` dependencies ([#6389](https://github.com/python-poetry/poetry/pull/6389))
14+
- Fix an issue where Poetry was not able to update pip in virtualenv on Windows ([#6430](https://github.com/python-poetry/poetry/pull/6430))
15+
- 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))
16+
- Fix a performance regression of `poetry lock` with private packages sources ([#6442](https://github.com/python-poetry/poetry/pull/6442))
17+
- Fix an issue where `--no-cache` was not respected when running `poetry install` ([#6479](https://github.com/python-poetry/poetry/pull/6479))
18+
- Fix an issue where deprecation warnings for `--dev` were missing ([#6475](https://github.com/python-poetry/poetry/pull/6475))
19+
- Fix outdated build system requirements ([#6509](https://github.com/python-poetry/poetry/pull/6509))
20+
- 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))
21+
- 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))
22+
23+
### Docs
24+
25+
- Add missing venv path segment to paths used by install.python-poetry.org ([#6311](https://github.com/python-poetry/poetry/pull/6311))
26+
- Add some recommendations about how to install Poetry into an CI environment ([#6345](https://github.com/python-poetry/poetry/pull/6345))
27+
- Fix example for `--with` and `--without` ([#6318](https://github.com/python-poetry/poetry/pull/6318))
28+
- Update configuration folder for macOS ([#6395](https://github.com/python-poetry/poetry/pull/6395))
29+
- Improve description of `virtualenv.create` ([#6460](https://github.com/python-poetry/poetry/pull/6460))
30+
- Clarify that `poetry install` removes dependencies of non-installed extras ([#6229](https://github.com/python-poetry/poetry/pull/6229))
31+
- Add note about `pre-commit autoupdate` ([#6497](https://github.com/python-poetry/poetry/pull/6497))
32+
33+
334
## [1.2.0] - 2022-08-31
435

536
### Docs
@@ -1509,7 +1540,8 @@ Initial release
15091540

15101541

15111542

1512-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.0...master
1543+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.1...master
1544+
[1.2.1]: https://github.com/python-poetry/poetry/releases/tag/1.2.1
15131545
[1.2.0]: https://github.com/python-poetry/poetry/releases/tag/1.2.0
15141546
[1.2.0rc2]: https://github.com/python-poetry/poetry/releases/tag/1.2.0rc2
15151547
[1.2.0rc1]: https://github.com/python-poetry/poetry/releases/tag/1.2.0rc1

poetry.lock

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "poetry"
3-
version = "1.2.0"
3+
version = "1.2.1"
44
description = "Python dependency management and packaging made easy."
55
authors = [
66
"Sébastien Eustace <[email protected]>",
@@ -44,8 +44,8 @@ generate-setup-file = false
4444
[tool.poetry.dependencies]
4545
python = "^3.7"
4646

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

0 commit comments

Comments
 (0)