Skip to content

Commit

Permalink
Version 1.1.0 release (#265)
Browse files Browse the repository at this point in the history
* Version 1.1.0 release

* Remove `safety`

* Do not fail fast

* New poetry install method
  • Loading branch information
sobolevn authored Feb 22, 2024
1 parent 04ff592 commit dd29464
Show file tree
Hide file tree
Showing 4 changed files with 550 additions and 762 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
Expand All @@ -27,8 +28,7 @@ jobs:

- name: Install poetry
run: |
curl -sSL \
"https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py" | python
curl -sSL "https://install.python-poetry.org" | python -
# Adding `poetry` to `$PATH`:
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
Expand All @@ -48,7 +48,6 @@ jobs:
poetry run pytest
poetry check
poetry run pip check
poetry run safety check --full-report
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,25 @@

We follow Semantic Version.

## Version 1.1.0

### Features

- Drops `python3.8` support

### Misc

- Unlocked `urllib3`, `requests`, and `docker-py`


## Version 1.0.1

### Misc

- Locked version of `urllib3` to `<2` as workaround for https://github.com/docker/docker-py/issues/3113
- Locked version of `requests` to `<2.29` as workaround for https://github.com/docker/docker-py/issues/3113


## Version 1.0.0

### Features
Expand Down
Loading

0 comments on commit dd29464

Please sign in to comment.