Skip to content

Commit e68b69d

Browse files
committed
Bump version to 1.0.5
1 parent d77c702 commit e68b69d

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

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

3+
## [1.0.5] - 2021-09-18
4+
5+
### Fixed
6+
7+
- Fixed the copy of `Package` instances which led to file hashes not being available. ([#193](https://github.com/python-poetry/poetry-core/pull/193))
8+
- Fixed an issue where unsafe parameters could be passed to `git` commands. ([#203](https://github.com/python-poetry/poetry-core/pull/203))
9+
- Fixed an issue where the wrong `git` executable could be used on Windows. ([#205](https://github.com/python-poetry/poetry-core/pull/205))
10+
11+
312
## [1.0.4] - 2021-08-19
413

514
### Fixed
@@ -155,7 +164,8 @@ No changes.
155164
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
156165

157166

158-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.0.4...1.1
167+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.0.5...1.1
168+
[1.0.5]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.5
159169
[1.0.4]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.4
160170
[1.0.3]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.3
161171
[1.0.2]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.2

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

0 commit comments

Comments
 (0)