Skip to content

Commit 6cdb216

Browse files
radoeringneersighted
authored andcommitted
release: bump to version 1.3.0
1 parent 533ffb5 commit 6cdb216

File tree

4 files changed

+31
-4
lines changed

4 files changed

+31
-4
lines changed

.github/workflows/downstream.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,12 @@ jobs:
5555

5656
- name: Switch downstream to development poetry-core
5757
working-directory: ./poetry
58-
run: poetry add --lock --group test ../poetry-core
58+
run: |
59+
# remove poetry-core from main group to avoid version conflicts
60+
# with a potential entry in the test group
61+
poetry remove poetry-core
62+
# add to test group to overwrite a potential entry in that group
63+
poetry add --lock --group test ../poetry-core
5964
6065
- name: Install downstream dependencies
6166
working-directory: ./poetry

CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,32 @@
11
# Change Log
22

3+
## [1.3.0] - 2022-10-05
4+
5+
### Added
6+
7+
- Add `3.11` to the list of available Python versions ([#477](https://github.com/python-poetry/poetry-core/pull/477)).
8+
9+
### Changed
10+
11+
- Deprecate `poetry.core.constraints.generic`, which is replaced by `poetry.core.packages.constraints` ([#482](https://github.com/python-poetry/poetry-core/pull/482)).
12+
- Deprecate `poetry.core.semver`, which is replaced by `poetry.core.constraints.version` ([#482](https://github.com/python-poetry/poetry-core/pull/482)).
13+
14+
### Fixed
15+
16+
- Fix an issue where versions were escaped wrongly when building the wheel name ([#469](https://github.com/python-poetry/poetry-core/pull/469)).
17+
- Fix an issue where caret constraints of pre-releases with a major version of 0 resulted in an empty version range ([#475](https://github.com/python-poetry/poetry-core/pull/475)).
18+
- Fix an issue where the names of extras were not normalized according to PEP 685 ([#476](https://github.com/python-poetry/poetry-core/pull/476)).
19+
- Fix an issue where sdist names were not normalized ([#484](https://github.com/python-poetry/poetry-core/pull/484)).
20+
21+
322
## [1.2.0] - 2022-09-13
423

524
### Added
625

726
- Added support for subdirectories in `url` dependencies ([#398](https://github.com/python-poetry/poetry-core/pull/398)).
827

928
### Changed
29+
1030
- When setting an invalid version constraint an error is raised instead of silently setting "any version" ([#461](https://github.com/python-poetry/poetry-core/pull/461)).
1131
- Allow more characters in author name ([#411](https://github.com/python-poetry/poetry-core/pull/411)).
1232

@@ -33,6 +53,7 @@
3353
## [1.1.0rc2] - 2022-08-26
3454

3555
### Changed
56+
3657
- Enabled setting `version` of `ProjectPackage` to support dynamically setting the project's package version (e.g. from a plugin) ([#447](https://github.com/python-poetry/poetry-core/pull/447)).
3758

3859
### Fixed
@@ -385,7 +406,8 @@ No changes.
385406
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
386407

387408

388-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.2.0...main
409+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.3.0...main
410+
[1.3.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.3.0
389411
[1.2.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.2.0
390412
[1.1.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0
391413
[1.1.0rc3]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0rc3

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "poetry-core"
3-
version = "1.2.0"
3+
version = "1.3.0"
44
description = "Poetry PEP 517 Build Backend"
55
authors = ["Sébastien Eustace <sebastien@eustace.io>"]
66

src/poetry/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# this cannot presently be replaced with importlib.metadata.version as when building
99
# itself, poetry-core is not available as an installed distribution.
10-
__version__ = "1.2.0"
10+
__version__ = "1.3.0"
1111

1212
__vendor_site__ = (Path(__file__).parent / "_vendor").as_posix()
1313

0 commit comments

Comments
 (0)