Skip to content

Commit e58597b

Browse files
committed
Bump version to 1.0.4
1 parent 55f4da1 commit e58597b

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

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

3+
## [1.0.4] - 2021-08-19
4+
5+
### Fixed
6+
7+
- Fixed an error in the way python markers with a precision >= 3 were handled. ([#180](https://github.com/python-poetry/poetry-core/pull/180))
8+
- Fixed an error in the evaluation of `in/not in` markers ([#189](https://github.com/python-poetry/poetry-core/pull/189))
9+
10+
311
## [1.0.3] - 2021-04-09
412

513
### Fixed
@@ -147,7 +155,8 @@ No changes.
147155
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
148156

149157

150-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.0.3...master
158+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.0.4...1.1
159+
[1.0.4]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.4
151160
[1.0.3]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.3
152161
[1.0.2]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.2
153162
[1.0.1]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.1

poetry/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# noinspection PyUnresolvedReferences
88
from pathlib2 import Path
99

10-
__version__ = "1.0.3"
10+
__version__ = "1.0.4"
1111

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

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

0 commit comments

Comments
 (0)