Skip to content

Commit

Permalink
release: bump to version 1.2.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
finswimmer committed Aug 16, 2022
1 parent 77003f1 commit 1cb346a
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 3 deletions.
31 changes: 30 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Change Log

## [1.2.0rc1] - 2022-08-16

### Added
- Virtual environments can now be created even with empty project name ([#5856](https://github.com/python-poetry/poetry/pull/5856))
- Added support for subdirectories in git dependencies ([#5172](https://github.com/python-poetry/poetry/pull/5172))
- Added support for nushell on `poetry shell` ([#6063](https://github.com/python-poetry/poetry/pull/6063))


### Changed
- extras and extras dependencies are now sorted in lockfile ([#6169](https://github.com/python-poetry/poetry/pull/6169))
- Removed code for the `export` command, which is now provided via plugin ([#6128](https://github.com/python-poetry/poetry/pull/6128))
- Replaced Poetry's helper method canonicalize_name() by packaging.utils.canonicalize_name() ([#6022](https://github.com/python-poetry/poetry/pull/6022))

### Fixed
- tomlkit versions with memory leak are now avoided ([#6160](https://github.com/python-poetry/poetry/pull/6160))
- Fixed an issue where Windows drive mappings break virtual environment names ([#6110](https://github.com/python-poetry/poetry/pull/6110))
- Fixed an issue where symlinks in lock file were not resolved ([#5850](https://github.com/python-poetry/poetry/pull/5850))
- Fixed an issue where `poetry lock` fails without output ([#6058](https://github.com/python-poetry/poetry/pull/6058))
- 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))
- Improved error message of `poetry publish` in the event of an upload error. ([#6043](https://github.com/python-poetry/poetry/pull/6043))
- Fixed a tomlkit regression resulting in inconsistent line endings ([#5870](https://github.com/python-poetry/poetry/pull/5870))


### Docs
- Documented the use of the "subdirectory" parameter ([#5949](https://github.com/python-poetry/poetry/pull/5949))
- Documented tox config for different use cases ([#6026](https://github.com/python-poetry/poetry/pull/6026))


## [1.2.0b3] - 2022-07-13

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



[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.0b3...master
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.0rc1...master
[1.2.0rc1]: https://github.com/python-poetry/poetry/releases/tag/1.2.0rc1
[1.2.0b3]: https://github.com/python-poetry/poetry/releases/tag/1.2.0b3
[1.2.0b2]: https://github.com/python-poetry/poetry/releases/tag/1.2.0b2
[1.2.0b1]: https://github.com/python-poetry/poetry/releases/tag/1.2.0b1
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "poetry"
version = "1.2.0rc1.dev0"
version = "1.2.0rc1"
description = "Python dependency management and packaging made easy."
authors = [
"Sébastien Eustace <[email protected]>",
Expand Down Expand Up @@ -44,7 +44,7 @@ generate-setup-file = false
[tool.poetry.dependencies]
python = "^3.7"

poetry-core = "^1.1.0b3"
poetry-core = "^1.1.0rc1"
poetry-plugin-export = "^1.0.6"
cachecontrol = { version = "^0.12.9", extras = ["filecache"] }
cachy = "^0.3.0"
Expand Down

0 comments on commit 1cb346a

Please sign in to comment.