Skip to content

Commit 44a9a3e

Browse files
Fix publish workflow step (#12)
* Add 'Set up poetry' step to github workflow * Change version to 1.1.1
1 parent 555499f commit 44a9a3e

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ jobs:
1414
uses: actions/setup-python@v2
1515
with:
1616
python-version: 3.8
17+
- name: Set up poetry
18+
uses: abatilo/actions-poetry@v2.0.0
19+
with:
20+
poetry-version: 1.1.4
1721
- name: Install dependencies
1822
run: |
1923
python -m pip install --upgrade pip

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
## unreleased
44
- N/A
5-
5+
6+
## [v1.1.1](https://github.com/emergingtravel/papi-sdk-python/releases/tag/v1.1.1) - 2021-01-19
7+
8+
- Fix publish workflow step
9+
610
## [v1.1.0](https://github.com/emergingtravel/papi-sdk-python/releases/tag/v1.1.0) - 2021-01-19
711

812
- Add a version of the package to headers [#9](https://github.com/EmergingTravel/papi-sdk-python/issues/9)

papi_sdk/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
__name__ = "papi_sdk"
2-
__version__ = "v1.1.0"
2+
__version__ = "v1.1.1"

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 = "papi-sdk"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
description = "pAPI SDK is a Python SDK for ETG APIv3"
55
authors = [
66
"Stanislav Losev <stanislav.losev@ostrovok.ru>",

0 commit comments

Comments
 (0)