Skip to content

Commit 6592968

Browse files
committed
release: bump version to 1.3.0
1 parent 274b737 commit 6592968

File tree

2 files changed

+79
-9
lines changed

2 files changed

+79
-9
lines changed

CHANGELOG.md

+78-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,74 @@
11
# Change Log
22

3+
4+
## [1.3.0] - 2022-12-03
5+
6+
### Added
7+
8+
- A comment with `@generated` is added to poetry.lock in order to allow tools to detect that the lock file is not created manually ([#2773](https://github.com/python-poetry/poetry/pull/2773)).
9+
- When running `poetry check` the project is checked for valid and deprecated trove classifiers ([#2881](https://github.com/python-poetry/poetry/pull/2881)).
10+
- Add a cli option to specify working path ([#6810](https://github.com/python-poetry/poetry/pull/6810)).
11+
12+
### Changed
13+
14+
- When trying to upload a file that doesn't exist an `UploadError` is raised ([#4417](https://github.com/python-poetry/poetry/pull/4417)).
15+
- Improved performance by preferring wheels to source distributions for extracting meta information ([#6547](https://github.com/python-poetry/poetry/pull/6547)).
16+
- New lock file format 2.0 where files and hashes are stored in each package section instead of the metadata section ([#6393](https://github.com/python-poetry/poetry/pull/6393)).
17+
- Git dependencies of extras are only fetched if the extra is requested ([#6615](https://github.com/python-poetry/poetry/pull/6615)).
18+
- Poetry calls pip with `--no-input` ([#6724](https://github.com/python-poetry/poetry/pull/6724), [#6966](https://github.com/python-poetry/poetry/pull/6966)).
19+
- Refactored repositories and deprecated old modules and classes ([#6669](https://github.com/python-poetry/poetry/pull/6669), [#6803](https://github.com/python-poetry/poetry/pull/6803)).
20+
- Directory dependencies are always resolved, even when running `poetry lock --no-update` ([#6843](https://github.com/python-poetry/poetry/pull/6843)).
21+
- Improved performance of parallel installation for machines with more than 6 cores ([#6805](https://github.com/python-poetry/poetry/pull/6805)).
22+
- Improved performance of reading the lock file ([#6562](https://github.com/python-poetry/poetry/pull/6562)).
23+
- If there are incompatible constraints in the requirements of a package an error is raised ([#7098](https://github.com/python-poetry/poetry/pull/7098)).
24+
25+
### Fixed
26+
27+
- Fix an issue where the output of commands executed with `--dry-run` contained duplicate entries ([#4660](https://github.com/python-poetry/poetry/pull/4660)).
28+
- Fix an issue where `poetry show --outdated` failed with a runtime error related to direct origin dependencies ([#6016](https://github.com/python-poetry/poetry/pull/6016)).
29+
- Fix an issue where only the last command of an `ApplicationPlugin` is registered ([#6304](https://github.com/python-poetry/poetry/pull/6304)).
30+
- Fix an issue where git dependencies were fetched unnecessarily when running `poetry lock --no-update` ([#6131](https://github.com/python-poetry/poetry/pull/6131)).
31+
- Fix an issue where stdout was polluted with messages that should go to stderr ([#6429](https://github.com/python-poetry/poetry/pull/6429)).
32+
- Fix shell activation for zsh ([#5795](https://github.com/python-poetry/poetry/pull/5795)).
33+
- Fix an issue where a url dependencies was shown as outdated ([#6396](https://github.com/python-poetry/poetry/pull/6396)).
34+
- Fix an issue where the source information of a dependency with extras was ignored ([#6472](https://github.com/python-poetry/poetry/pull/6472)).
35+
- Fix an issue where running multiple Poetry installs simultaneously could result in a corrupt artifact cache ([#6186](https://github.com/python-poetry/poetry/pull/6186)).
36+
- Fix an issue where Poetry failed to run pip due to a bad local configuration ([#6531](https://github.com/python-poetry/poetry/pull/6531)).
37+
- Fix an issue where `poetry update` and `poetry lock` resolved dependencies differently ([#6477](https://github.com/python-poetry/poetry/pull/6477)).
38+
- Fix an issue where Poetry hangs forever during dependency resolution due cachecontrol lock leftovers ([#6471](https://github.com/python-poetry/poetry/pull/6471)).
39+
- Fix an issue where `poetry env remove` removed the wrong environment ([#6195](https://github.com/python-poetry/poetry/pull/6195)).
40+
- Fix an issue where `poetry install` fails due to unfortunately named files in the current folder ([#6628](https://github.com/python-poetry/poetry/pull/6628)).
41+
- Fix an issue where dependencies from different sources where merged during dependency resolution ([#6679](https://github.com/python-poetry/poetry/pull/6679)).
42+
- Fix an issue where `experimental.system-git-client` could not be used via environment variable ([#6783](https://github.com/python-poetry/poetry/pull/6783)).
43+
- Fix an issue where poetry fails with an `AssertionError` due to `distribution.files` being `None` ([#6788](https://github.com/python-poetry/poetry/pull/6788)).
44+
- Fix an issue where `poetry add` results in duplicate entries when cases are mixed ([#6832](https://github.com/python-poetry/poetry/pull/6832)).
45+
- Fix an issue where `poetry env list` does not list the in-project environment ([#6979](https://github.com/python-poetry/poetry/pull/6979)).
46+
- Fix an issue where the return code of a script was not relayed as exit code ([#6824](https://github.com/python-poetry/poetry/pull/6824)).
47+
- Fix an issue where an encoding error was not propagated correctly ([#6790](https://github.com/python-poetry/poetry/pull/6790)).
48+
- Fix an issue where `poetry env info` did not respect `virtualenvs.prefer-active-python` ([#6986](https://github.com/python-poetry/poetry/pull/6986)).
49+
- Fix an issue where a package from the wrong source was installed for a multiple-constraints dependency with different sources ([#6747](https://github.com/python-poetry/poetry/pull/6747)).
50+
- Fix an issue where two version of the same package are installed for a multiple-constraints dependency with overlapping markers ([#7098](https://github.com/python-poetry/poetry/pull/7098)).
51+
52+
### Docs
53+
54+
- Improve documentation of package sources ([#5605](https://github.com/python-poetry/poetry/pull/5605)).
55+
- Updated the Windows cache path ([#7012](https://github.com/python-poetry/poetry/pull/7012)).
56+
57+
### poetry-core ([`1.4.0`](https://github.com/python-poetry/poetry-core/releases/tag/1.4.0))
58+
59+
- `ParseConstraintError` is now raised on version and constraint parsing errors, and includes information on the package that caused the error ([#514](https://github.com/python-poetry/poetry-core/pull/514)).
60+
- Fix an issue where invalid PEP 508 requirements were generated due to a missing space before semicolons ([#510](https://github.com/python-poetry/poetry-core/pull/510)).
61+
- Fix an issue where relative paths were encoded into package requirements, instead of a file:// URL as required by PEP 508 ([#512](https://github.com/python-poetry/poetry-core/pull/512)).
62+
63+
### poetry-plugin-export ([`^1.2.0`](https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.2.0))
64+
65+
- Ensure compatibility with Poetry 1.3.0. No functional changes.
66+
67+
### cleo ([`^2.0.0`](https://github.com/python-poetry/poetry-core/releases/tag/2.0.0))
68+
69+
- TODO
70+
71+
372
## [1.2.2] - 2022-10-10
473

574
### Added
@@ -83,25 +152,25 @@
83152
### Docs
84153

85154
- Added note about how to add a git dependency with a subdirectory ([#6218](https://github.com/python-poetry/poetry/pull/6218))
86-
- Fixed several style issues in the docs ([#6255](https://github.com/python-poetry/poetry/pull/6255))
87-
- Fixed outdated info about `--only` parameter ([#6264](https://github.com/python-poetry/poetry/pull/6264))
155+
- Fixed several style issues in the docs ([#6254](https://github.com/python-poetry/poetry/pull/6254))
156+
- Fixed outdated info about `--only` parameter ([#6263](https://github.com/python-poetry/poetry/pull/6263))
88157

89158

90159
## [1.2.0rc2] - 2022-08-26
91160

92161
### Fixed
93162

94-
- Fixed an issue where virtual environments were created unnecessarily when running `poetry self` commands ([#6226](https://github.com/python-poetry/poetry/pull/6226))
95-
- Ensure that packages' `pretty_name` are written to the lock file ([#6243](https://github.com/python-poetry/poetry/pull/6243))
163+
- Fixed an issue where virtual environments were created unnecessarily when running `poetry self` commands ([#6225](https://github.com/python-poetry/poetry/pull/6225))
164+
- Ensure that packages' `pretty_name` are written to the lock file ([#6237](https://github.com/python-poetry/poetry/pull/6237))
96165

97166
### Improvements
98167

99-
- Improved the consistency of `Pool().remove_repository()` to make it easier to write poetry plugins ([#6231](https://github.com/python-poetry/poetry/pull/6231))
168+
- Improved the consistency of `Pool().remove_repository()` to make it easier to write poetry plugins ([#6214](https://github.com/python-poetry/poetry/pull/6214))
100169

101170
### Docs
102171

103-
- Removed mentions of Python 2.7 from docs ([#6235](https://github.com/python-poetry/poetry/pull/6235))
104-
- Added note about the difference between groups and extras ([#6232](https://github.com/python-poetry/poetry/pull/6232))
172+
- Removed mentions of Python 2.7 from docs ([#6234](https://github.com/python-poetry/poetry/pull/6234))
173+
- Added note about the difference between groups and extras ([#6230](https://github.com/python-poetry/poetry/pull/6230))
105174

106175

107176
## [1.2.0rc1] - 2022-08-22
@@ -1612,7 +1681,8 @@ Initial release
16121681

16131682

16141683

1615-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.2...master
1684+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.3.0...master
1685+
[1.3.0]: https://github.com/python-poetry/poetry/releases/tag/1.3.0
16161686
[1.2.2]: https://github.com/python-poetry/poetry/releases/tag/1.2.2
16171687
[1.2.1]: https://github.com/python-poetry/poetry/releases/tag/1.2.1
16181688
[1.2.0]: https://github.com/python-poetry/poetry/releases/tag/1.2.0

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.3.0.dev0"
3+
version = "1.3.0"
44
description = "Python dependency management and packaging made easy."
55
authors = [
66
"Sébastien Eustace <sebastien@eustace.io>",

0 commit comments

Comments
 (0)