Skip to content

Commit

Permalink
Bump version to 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed Sep 18, 2021
1 parent d77c702 commit e68b69d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## [1.0.5] - 2021-09-18

### Fixed

- Fixed the copy of `Package` instances which led to file hashes not being available. ([#193](https://github.com/python-poetry/poetry-core/pull/193))
- Fixed an issue where unsafe parameters could be passed to `git` commands. ([#203](https://github.com/python-poetry/poetry-core/pull/203))
- Fixed an issue where the wrong `git` executable could be used on Windows. ([#205](https://github.com/python-poetry/poetry-core/pull/205))


## [1.0.4] - 2021-08-19

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


[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.0.4...1.1
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.0.5...1.1
[1.0.5]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.5
[1.0.4]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.4
[1.0.3]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.3
[1.0.2]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.2
Expand Down
2 changes: 1 addition & 1 deletion poetry/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# noinspection PyUnresolvedReferences
from pathlib2 import Path

__version__ = "1.0.4"
__version__ = "1.0.5"

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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "poetry-core"
version = "1.0.4"
version = "1.0.5"
description = "Poetry PEP 517 Build Backend"
authors = ["Sébastien Eustace <sebastien@eustace.io>"]

Expand Down

0 comments on commit e68b69d

Please sign in to comment.