Skip to content

Commit 54e9b87

Browse files
committed
release: bump to version 1.2.0rc1
1 parent 65ff74a commit 54e9b87

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
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.0rc1] - 2022-08-17
4+
5+
### Added
6+
7+
- Added support for subdirectories in git dependencies ([#5172](https://github.com/python-poetry/poetry/pull/5172))
8+
- Virtual environments can now be created even with empty project name ([#5856](https://github.com/python-poetry/poetry/pull/5856))
9+
- Added support for `nushell` on `poetry shell` ([#6063](https://github.com/python-poetry/poetry/pull/6063))
10+
11+
### Changed
12+
13+
- Replaced Poetry's helper method `canonicalize_name()` by `packaging.utils.canonicalize_name()` ([#6022](https://github.com/python-poetry/poetry/pull/6022))
14+
- Removed code for the `export` command, which is now provided via plugin ([#6128](https://github.com/python-poetry/poetry/pull/6128))
15+
- Extras and extras dependencies are now sorted in lock file ([#6169](https://github.com/python-poetry/poetry/pull/6169))
16+
17+
### Fixed
18+
19+
- Fixed an issue where symlinks in lock file were not resolved ([#5850](https://github.com/python-poetry/poetry/pull/5850))
20+
- Fixed a `tomlkit` regression resulting in inconsistent line endings ([#5870](https://github.com/python-poetry/poetry/pull/5870))
21+
- Fixed an issue where neither Python nor created venv can be found, when using Python from MS Store ([#5931](https://github.com/python-poetry/poetry/pull/5931))
22+
- Improved error message of `poetry publish` in the event of an upload error ([#6043](https://github.com/python-poetry/poetry/pull/6043))
23+
- Fixed an issue where `poetry lock` fails without output ([#6058](https://github.com/python-poetry/poetry/pull/6058))
24+
- Fixed an issue where Windows drive mappings break virtual environment names ([#6110](https://github.com/python-poetry/poetry/pull/6110))
25+
- `tomlkit` versions with memory leak are now avoided ([#6160](https://github.com/python-poetry/poetry/pull/6160))
26+
- Fixed an infinite loop in the solver ([#6178](https://github.com/python-poetry/poetry/pull/6178))
27+
28+
### Docs
29+
30+
- Documented the use of the `subdirectory` parameter ([#5949](https://github.com/python-poetry/poetry/pull/5949))
31+
- Documented `tox` config for different use cases ([#6026](https://github.com/python-poetry/poetry/pull/6026))
32+
33+
334
## [1.2.0b3] - 2022-07-13
435

536
**Important**: This release fixes a critical issue that prevented hashes from being retrieved when locking dependencies,
@@ -1447,7 +1478,8 @@ Initial release
14471478

14481479

14491480

1450-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.0b3...master
1481+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.0rc1...master
1482+
[1.2.0rc1]: https://github.com/python-poetry/poetry/releases/tag/1.2.0rc1
14511483
[1.2.0b3]: https://github.com/python-poetry/poetry/releases/tag/1.2.0b3
14521484
[1.2.0b2]: https://github.com/python-poetry/poetry/releases/tag/1.2.0b2
14531485
[1.2.0b1]: https://github.com/python-poetry/poetry/releases/tag/1.2.0b1

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "poetry"
3-
version = "1.2.0rc1.dev0"
3+
version = "1.2.0rc1"
44
description = "Python dependency management and packaging made easy."
55
authors = [
66
"Sébastien Eustace <[email protected]>",

0 commit comments

Comments
 (0)