Skip to content

Commit 4ba5ee8

Browse files
abnfinswimmer
authored andcommitted
bump version: 1.1.0b1
1 parent 81551a7 commit 4ba5ee8

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
lines changed

CHANGELOG.md

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

3+
## [1.1.0b1] - 2022-05-20
4+
5+
### Fixed
6+
7+
- Fixed an issue where canonicalize package names leads to infinite loops ([#328](https://github.com/python-poetry/poetry-core/pull/328)).
8+
- Fixed an issue where versions wasn't correct normalized to PEP-440 ([#344](https://github.com/python-poetry/poetry-core/pull/344)).
9+
- Fixed an issue with union of multi markers if one marker is a subset of the other marker ([#352](https://github.com/python-poetry/poetry-core/pull/352)).
10+
- Fixed an issue with markers which are not in disjunctive normal form (DNF) ([#347](https://github.com/python-poetry/poetry-core/pull/347)).
11+
- Fixed an issue where stub-only partial namespace packages were not recognized as packages ([#221](https://github.com/python-poetry/poetry-core/pull/221)).
12+
- Fixed an issue where PEP-508 url requirements with extras were not parsed correctly ([#345](https://github.com/python-poetry/poetry-core/pull/345)).
13+
- Fixed an issue where PEP-508 strings with wildcard exclusion constraints were incorrectly exported ([#343](https://github.com/python-poetry/poetry-core/pull/343)).
14+
- Allow hidden directories on Windows bare repos ([#341](https://github.com/python-poetry/poetry-core/pull/341)).
15+
- Fixed an issue where dependencies with an epoch are parsed as empty ([#316](https://github.com/python-poetry/poetry-core/pull/316)).
16+
- Fixed an issue where a package consisting of multiple packages wasn't build correctly ([#292](https://github.com/python-poetry/poetry-core/pull/292)).
17+
18+
### Added
19+
20+
- Added support for handling git urls with subdirectory ([#288](https://github.com/python-poetry/poetry-core/pull/288)).
21+
- Added support for metadata files as described in PEP-658 for PEP-503 "simple" API repositories ([#333](https://github.com/python-poetry/poetry-core/pull/333)).
22+
23+
### Changed
24+
25+
- Renamed dependency group of runtime dependencies to from `default` to `main` ([#326](https://github.com/python-poetry/poetry-core/pull/326)).
26+
27+
### Improvements
28+
29+
- `poetry-core` is now completly type checked. Special thanks to @dimbleby :tada:
30+
- Improved the SemVer constraint parsing ([#327](https://github.com/python-poetry/poetry-core/pull/327)).
31+
- Improved the speed when cloning git repositories ([#290](https://github.com/python-poetry/poetry-core/pull/290)).
32+
333
## [1.1.0a7] - 2022-03-05
434

535
### Fixed
@@ -253,7 +283,8 @@ No changes.
253283
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
254284

255285

256-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0a7...master
286+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0b1...master
287+
[1.1.0b1]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0b1
257288
[1.1.0a7]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a7
258289
[1.1.0a6]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a6
259290
[1.1.0a5]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a5

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.0-alpha.8"
3+
version = "1.1.0-beta.1"
44
description = "Poetry PEP 517 Build Backend"
55
authors = ["Sébastien Eustace <[email protected]>"]
66

0 commit comments

Comments
 (0)