Skip to content

Commit 1314ad4

Browse files
authored
bump to version 1.1.0a7 (#289)
1 parent c335b76 commit 1314ad4

File tree

3 files changed

+44
-3
lines changed

3 files changed

+44
-3
lines changed

CHANGELOG.md

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,45 @@
11
# Change Log
22

3+
## [1.1.0a7] - 2022-03-05
4+
5+
### Fixed
6+
7+
- Fixed an issue when evaluate `in/not in` markers ([#188](https://github.com/python-poetry/poetry-core/pull/188)).
8+
- Fixed an issue when parsing of caret constraint with leading zero ([#201](https://github.com/python-poetry/poetry-core/pull/201)).
9+
- Respect format for explicit included files when finding excluded files ([#228](https://github.com/python-poetry/poetry-core/pull/228)).
10+
- Fixed an issue where only the last location was used when multiple packages should be included ([#108](https://github.com/python-poetry/poetry-core/pull/108)).
11+
- Ensure that package `description` contains no new line ([#219](https://github.com/python-poetry/poetry-core/pull/219)).
12+
- Fixed an issue where all default dependencies were removed instead of just the selected one ([#220](https://github.com/python-poetry/poetry-core/pull/220)).
13+
- Ensure that authors and maintainers are normalized ([#276](https://github.com/python-poetry/poetry-core/pull/276)).
14+
15+
### Added
16+
17+
- Add support for most of the guaranteed hashes ([#207](https://github.com/python-poetry/poetry-core/pull/207)).
18+
- Add support to declare multiple README files ([#248](https://github.com/python-poetry/poetry-core/pull/248)).
19+
- Add support for git sub directories ([#192](https://github.com/python-poetry/poetry-core/pull/192)).
20+
- Add hooks according to PEP-660 for editable installs ([#182](https://github.com/python-poetry/poetry-core/pull/182)).
21+
- Add support for version epochs ([#264](https://github.com/python-poetry/poetry-core/pull/264)).
22+
23+
24+
### Changed
25+
26+
- Drop python3.6 support ([#263](https://github.com/python-poetry/poetry-core/pull/263)).
27+
- Loose the strictness when parsing version constraint to support invalid use of wildcards, e.g. `>=3.*` ([#186](https://github.com/python-poetry/poetry-core/pull/186)).
28+
- No longer assume a default git branch name ([#192](https://github.com/python-poetry/poetry-core/pull/192)).
29+
- Sort package name in extras to make it reproducible ([#280](https://github.com/python-poetry/poetry-core/pull/280)).
30+
31+
### Improvements
32+
33+
- Improve marker handling ([#208](https://github.com/python-poetry/poetry-core/pull/208),
34+
[#282](https://github.com/python-poetry/poetry-core/pull/282),
35+
[#283](https://github.com/python-poetry/poetry-core/pull/283),
36+
[#284](https://github.com/python-poetry/poetry-core/pull/284),
37+
[#286](https://github.com/python-poetry/poetry-core/pull/286),
38+
[#291](https://github.com/python-poetry/poetry-core/pull/291),
39+
[#293](https://github.com/python-poetry/poetry-core/pull/293),
40+
[#294](https://github.com/python-poetry/poetry-core/pull/294),
41+
[#297](https://github.com/python-poetry/poetry-core/pull/297)).
42+
343
## [1.1.0a6] - 2021-07-30
444

545
### Added
@@ -213,7 +253,8 @@ No changes.
213253
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
214254

215255

216-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0a6...master
256+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0a7...master
257+
[1.1.0a7]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a7
217258
[1.1.0a6]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a6
218259
[1.1.0a5]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a5
219260
[1.1.0a4]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a4

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

src/poetry/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from pathlib import Path
44

55

6-
__version__ = "1.1.0a6"
6+
__version__ = "1.1.0a7"
77

88
__vendor_site__ = (Path(__file__).parent / "_vendor").as_posix()
99

0 commit comments

Comments
 (0)