Skip to content

Commit 1cb346a

Browse files
committed
release: bump to version 1.2.0rc1
1 parent 77003f1 commit 1cb346a

File tree

2 files changed

+32
-3
lines changed

2 files changed

+32
-3
lines changed

CHANGELOG.md

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

3+
## [1.2.0rc1] - 2022-08-16
4+
5+
### Added
6+
- Virtual environments can now be created even with empty project name ([#5856](https://github.com/python-poetry/poetry/pull/5856))
7+
- Added support for subdirectories in git dependencies ([#5172](https://github.com/python-poetry/poetry/pull/5172))
8+
- Added support for nushell on `poetry shell` ([#6063](https://github.com/python-poetry/poetry/pull/6063))
9+
10+
11+
### Changed
12+
- extras and extras dependencies are now sorted in lockfile ([#6169](https://github.com/python-poetry/poetry/pull/6169))
13+
- Removed code for the `export` command, which is now provided via plugin ([#6128](https://github.com/python-poetry/poetry/pull/6128))
14+
- Replaced Poetry's helper method canonicalize_name() by packaging.utils.canonicalize_name() ([#6022](https://github.com/python-poetry/poetry/pull/6022))
15+
16+
### Fixed
17+
- tomlkit versions with memory leak are now avoided ([#6160](https://github.com/python-poetry/poetry/pull/6160))
18+
- Fixed an issue where Windows drive mappings break virtual environment names ([#6110](https://github.com/python-poetry/poetry/pull/6110))
19+
- Fixed an issue where symlinks in lock file were not resolved ([#5850](https://github.com/python-poetry/poetry/pull/5850))
20+
- Fixed an issue where `poetry lock` fails without output ([#6058](https://github.com/python-poetry/poetry/pull/6058))
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 a tomlkit regression resulting in inconsistent line endings ([#5870](https://github.com/python-poetry/poetry/pull/5870))
24+
25+
26+
### Docs
27+
- Documented the use of the "subdirectory" parameter ([#5949](https://github.com/python-poetry/poetry/pull/5949))
28+
- Documented tox config for different use cases ([#6026](https://github.com/python-poetry/poetry/pull/6026))
29+
30+
331
## [1.2.0b3] - 2022-07-13
432

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

14481476

14491477

1450-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.0b3...master
1478+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.0rc1...master
1479+
[1.2.0rc1]: https://github.com/python-poetry/poetry/releases/tag/1.2.0rc1
14511480
[1.2.0b3]: https://github.com/python-poetry/poetry/releases/tag/1.2.0b3
14521481
[1.2.0b2]: https://github.com/python-poetry/poetry/releases/tag/1.2.0b2
14531482
[1.2.0b1]: https://github.com/python-poetry/poetry/releases/tag/1.2.0b1

pyproject.toml

+2-2
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]>",
@@ -44,7 +44,7 @@ generate-setup-file = false
4444
[tool.poetry.dependencies]
4545
python = "^3.7"
4646

47-
poetry-core = "^1.1.0b3"
47+
poetry-core = "^1.1.0rc1"
4848
poetry-plugin-export = "^1.0.6"
4949
cachecontrol = { version = "^0.12.9", extras = ["filecache"] }
5050
cachy = "^0.3.0"

0 commit comments

Comments
 (0)