Skip to content

Commit

Permalink
Merge pull request #191 from python-poetry/release-1.0.4
Browse files Browse the repository at this point in the history
Release 1.0.4
  • Loading branch information
sdispater committed Aug 19, 2021
2 parents a2f1ab8 + e58597b commit 1978f38
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Install and set up Poetry
run: |
curl -fsS -o get-poetry.py https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py
python get-poetry.py --preview -y
python get-poetry.py -y
- name: Build distributions
run: |
source $HOME/.poetry/env
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Install and setup Poetry
run: |
Invoke-WebRequest https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py -O get-poetry.py
python get-poetry.py --preview -y
python get-poetry.py -y
- name: Build distributions
run: |
$env:Path += ";$env:Userprofile\.poetry\bin"
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
- name: Install and set up Poetry
run: |
curl -fsS -o get-poetry.py https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py
python get-poetry.py --preview -y
python get-poetry.py -y
- name: Check distributions
run: |
ls -la dist
Expand Down
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## [1.0.4] - 2021-08-19

### Fixed

- Fixed an error in the way python markers with a precision >= 3 were handled. ([#180](https://github.com/python-poetry/poetry-core/pull/180))
- Fixed an error in the evaluation of `in/not in` markers ([#189](https://github.com/python-poetry/poetry-core/pull/189))


## [1.0.3] - 2021-04-09

### Fixed
Expand Down Expand Up @@ -147,7 +155,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.3...master
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.0.4...1.1
[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
[1.0.1]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.1
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.3"
__version__ = "1.0.4"

__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.3"
version = "1.0.4"
description = "Poetry PEP 517 Build Backend"
authors = ["Sébastien Eustace <sebastien@eustace.io>"]

Expand Down

0 comments on commit 1978f38

Please sign in to comment.