Skip to content

Commit 7cd761a

Browse files
radoeringneersighted
authored andcommitted
release: bump version to 1.2.1
1 parent f47f2aa commit 7cd761a

File tree

3 files changed

+49
-13
lines changed

3 files changed

+49
-13
lines changed

CHANGELOG.md

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

3+
## [1.2.1] - 2022-09-16
4+
5+
### Changed
6+
- Bump `poetry-core` to [`1.2.0`](https://github.com/python-poetry/poetry-core/releases/tag/1.2.0).
7+
- Bump `poetry-plugin-export` to [`^1.0.7`](https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.0.7).
8+
9+
### Fixed
10+
11+
- Fix an issue where `poetry cache clear` did not respect the `-n/--no-interaction` flag ([#6338](https://github.com/python-poetry/poetry/pull/6338)).
12+
- Fix an issue where `poetry lock --no-update` updated dependencies from non-PyPI package sources ([#6335](https://github.com/python-poetry/poetry/pull/6335)).
13+
- Fix a `poetry install` performance regression by falling back to internal pip ([#6062](https://github.com/python-poetry/poetry/pull/6062)).
14+
- Fix an issue where a virtual environment was created unnecessarily when running `poetry export` ([#6282](https://github.com/python-poetry/poetry/pull/6282)).
15+
- Fix an issue where `poetry lock --no-update` added duplicate hashes to the lock file ([#6389](https://github.com/python-poetry/poetry/pull/6389)).
16+
- Fix an issue where `poetry install` fails because of missing hashes for `url` dependencies ([#6389](https://github.com/python-poetry/poetry/pull/6389)).
17+
- Fix an issue where Poetry was not able to update pip in Windows virtual environments ([#6430](https://github.com/python-poetry/poetry/pull/6430)).
18+
- Fix an issue where Poetry was not able to install releases that contained less common link types ([#5767](https://github.com/python-poetry/poetry/pull/5767)).
19+
- Fix a `poetry lock` performance regression when checking non-PyPI sources for yanked versions ([#6442](https://github.com/python-poetry/poetry/pull/6442)).
20+
- Fix an issue where `--no-cache` was not respected when running `poetry install` ([#6479](https://github.com/python-poetry/poetry/pull/6479)).
21+
- Fix an issue where deprecation warnings for `--dev` were missing ([#6475](https://github.com/python-poetry/poetry/pull/6475)).
22+
- Fix an issue where Git dependencies failed to clone when `insteadOf` was used in `.gitconfig` using the Dulwich Git client ([#6506](https://github.com/python-poetry/poetry/pull/6506)).
23+
- Fix an issue where no cache entry is found when calling `poetry cache clear` with a non-normalized package name ([#6537](https://github.com/python-poetry/poetry/pull/6537)).
24+
- Fix an invalid virtualenv constraint on Poetry ([#6402](https://github.com/python-poetry/poetry/pull/6402)).
25+
- Fix outdated build system requirements for Poetry ([#6509](https://github.com/python-poetry/poetry/pull/6509)).
26+
27+
### Docs
28+
29+
- Add missing path segment to paths used by install.python-poetry.org ([#6311](https://github.com/python-poetry/poetry/pull/6311)).
30+
- Add recommendations about how to install Poetry in a CI environment ([#6345](https://github.com/python-poetry/poetry/pull/6345)).
31+
- Fix examples for `--with` and `--without` ([#6318](https://github.com/python-poetry/poetry/pull/6318)).
32+
- Update configuration folder path for macOS ([#6395](https://github.com/python-poetry/poetry/pull/6395)).
33+
- Improve the description of the `virtualenv.create` option ([#6460](https://github.com/python-poetry/poetry/pull/6460)).
34+
- Clarify that `poetry install` removes dependencies of non-installed extras ([#6229](https://github.com/python-poetry/poetry/pull/6229)).
35+
- Add a note about `pre-commit autoupdate` and Poetry's hooks ([#6497](https://github.com/python-poetry/poetry/pull/6497)).
36+
37+
338
## [1.2.0] - 2022-08-31
439

540
### Docs
@@ -1509,7 +1544,8 @@ Initial release
15091544

15101545

15111546

1512-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.0...master
1547+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.1...master
1548+
[1.2.1]: https://github.com/python-poetry/poetry/releases/tag/1.2.1
15131549
[1.2.0]: https://github.com/python-poetry/poetry/releases/tag/1.2.0
15141550
[1.2.0rc2]: https://github.com/python-poetry/poetry/releases/tag/1.2.0rc2
15151551
[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)