Skip to content

Commit 587a0b2

Browse files
sdispaterabn
authored andcommitted
Bump version to 1.1.0a4
1 parent a2ea424 commit 587a0b2

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG.md

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

3+
## [1.1.0a4] - 2021-04-30
4+
5+
### Changed
6+
7+
- Files in source distributions now have a deterministic time to improve reproducibility. ([#142](https://github.com/python-poetry/poetry-core/pull/142))
8+
9+
### Fixed
10+
11+
- Fixed an error where leading zeros in the local build part of version specifications were discarded. ([#167](https://github.com/python-poetry/poetry-core/pull/167))
12+
- Fixed the PEP 508 representation of file dependencies. ([#153](https://github.com/python-poetry/poetry-core/pull/153))
13+
- Fixed the copy of `Package` instances which led to file hashes not being available. ([#159](https://github.com/python-poetry/poetry-core/pull/159))
14+
- Fixed an error in the parsing of caret requirements with a pre-release lower bound. ([#171](https://github.com/python-poetry/poetry-core/pull/171))
15+
- Fixed an error where some pre-release versions were not flagged as pre-releases. ([#170](https://github.com/python-poetry/poetry-core/pull/170))
16+
17+
318
## [1.1.0a3] - 2021-04-09
419

520
### Fixed
@@ -180,7 +195,8 @@ No changes.
180195
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
181196

182197

183-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0a3...master
198+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0a4...master
199+
[1.1.0a4]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a4
184200
[1.1.0a3]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a3
185201
[1.1.0a2]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a2
186202
[1.1.0a1]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a1

poetry/core/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from pathlib import Path
44

55

6-
__version__ = "1.1.0a3"
6+
__version__ = "1.1.0a4"
77

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

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

0 commit comments

Comments
 (0)