Skip to content

Commit 0f7ae31

Browse files
radoeringbostonrwalker
authored andcommitted
bump version: 1.1.0b3 (python-poetry#413)
1 parent b58c283 commit 0f7ae31

File tree

3 files changed

+39
-5
lines changed

3 files changed

+39
-5
lines changed

CHANGELOG.md

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

3+
4+
## [1.1.0b3] - 2022-07-09
5+
6+
### Added
7+
8+
- Added support for valid PEP 517 projects with another build-system than poetry-core as directory dependencies ([#368](https://github.com/python-poetry/poetry-core/pull/368), [#377](https://github.com/python-poetry/poetry-core/pull/377)).
9+
- Added support for yanked files and releases according to PEP 592 ([#400](https://github.com/python-poetry/poetry-core/pull/400)).
10+
11+
### Changed
12+
13+
- Relaxed schema validation to allow additional properties ([#369](https://github.com/python-poetry/poetry-core/pull/369)).
14+
- Harmonized string representation of dependencies ([#393](https://github.com/python-poetry/poetry-core/pull/393)).
15+
- Changed wheel name normalization to follow most recent packaging specification ([#394](https://github.com/python-poetry/poetry-core/pull/394)).
16+
- Changed equality check of direct origin dependencies, so that constraints are not considered anymore ([#405](https://github.com/python-poetry/poetry-core/pull/405)).
17+
- Deprecated `Dependency.set_constraint()` and replaced it by a `constraint` property for consistency ([#370](https://github.com/python-poetry/poetry-core/pull/370)).
18+
- Removed `Package.requires_extras` ([#374](https://github.com/python-poetry/poetry-core/pull/374)).
19+
- Improved marker handling ([#380](https://github.com/python-poetry/poetry-core/pull/380),
20+
[#383](https://github.com/python-poetry/poetry-core/pull/383),
21+
[#384](https://github.com/python-poetry/poetry-core/pull/384),
22+
[#390](https://github.com/python-poetry/poetry-core/pull/390),
23+
[#395](https://github.com/python-poetry/poetry-core/pull/395)).
24+
25+
### Fixed
26+
27+
- Fixed hash method for `PackageSpecification`, `Package`, `Dependency` and their sub classes ([#370](https://github.com/python-poetry/poetry-core/pull/370)).
28+
- Fixed merging of markers `python_version` and `python_full_version` ([#382](https://github.com/python-poetry/poetry-core/pull/382), [#388](https://github.com/python-poetry/poetry-core/pull/388)).
29+
- Fixed python version normalization ([#385](https://github.com/python-poetry/poetry-core/pull/385), [#407](https://github.com/python-poetry/poetry-core/pull/407)).
30+
- Fixed an issue where version identifiers with a local version segment allowed non local versions ([#396](https://github.com/python-poetry/poetry-core/pull/396)).
31+
- Fixed an issue where version identifiers without a post release segment allowed post releases ([#396](https://github.com/python-poetry/poetry-core/pull/396)).
32+
- Fixed script definitions that didn't work when extras were not explicitly defined ([#404](https://github.com/python-poetry/poetry-core/pull/404)).
33+
34+
335
## [1.1.0b2] - 2022-05-24
436

537
### Fixed
@@ -11,6 +43,7 @@
1143

1244
- `poetry-core` generated wheel's now correctly identify `Generator` metadata as `poetry-core` instead of `poetry` ([#367](https://github.com/python-poetry/poetry-core/pull/367))
1345

46+
1447
## [1.1.0b1] - 2022-05-23
1548

1649
### Fixed
@@ -41,6 +74,7 @@
4174
- Improved the SemVer constraint parsing ([#327](https://github.com/python-poetry/poetry-core/pull/327)).
4275
- Improved the speed when cloning git repositories ([#290](https://github.com/python-poetry/poetry-core/pull/290)).
4376

77+
4478
## [1.1.0a7] - 2022-03-05
4579

4680
### Fixed
@@ -61,7 +95,6 @@
6195
- Add hooks according to PEP-660 for editable installs ([#182](https://github.com/python-poetry/poetry-core/pull/182)).
6296
- Add support for version epochs ([#264](https://github.com/python-poetry/poetry-core/pull/264)).
6397

64-
6598
### Changed
6699

67100
- Drop python3.6 support ([#263](https://github.com/python-poetry/poetry-core/pull/263)).
@@ -81,6 +114,7 @@
81114
[#294](https://github.com/python-poetry/poetry-core/pull/294),
82115
[#297](https://github.com/python-poetry/poetry-core/pull/297)).
83116

117+
84118
## [1.1.0a6] - 2021-07-30
85119

86120
### Added
@@ -271,7 +305,6 @@ No changes.
271305

272306
## [1.0.0a6] - 2020-04-24
273307

274-
275308
### Added
276309

277310
- Added support for markers inverse ([#21](https://github.com/python-poetry/core/pull/21)).
@@ -294,7 +327,8 @@ No changes.
294327
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
295328

296329

297-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0b2...main
330+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0b3...main
331+
[1.1.0b3]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0b3
298332
[1.1.0b2]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0b2
299333
[1.1.0b1]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0b1
300334
[1.1.0a7]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a7

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "poetry-core"
3-
version = "1.1.0b2"
3+
version = "1.1.0b3"
44
description = "Poetry PEP 517 Build Backend"
55
authors = ["Sébastien Eustace <[email protected]>"]
66

src/poetry/core/__init__.py

+1-1
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.1.0b2"
10+
__version__ = "1.1.0b3"
1111

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

0 commit comments

Comments
 (0)