Skip to content

Commit

Permalink
feat: release 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Diaoul committed May 9, 2024
1 parent ccddf71 commit 1d7d414
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 21 deletions.
28 changes: 9 additions & 19 deletions .github/workflows/publish.yml
Expand Up @@ -9,25 +9,15 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: 3.9
- uses: snok/install-poetry@v1.1.6
with:
virtualenvs-in-project: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v2
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Install library
run: poetry install --no-interaction
- name: Publish
python-version: 3.12
cache: poetry
- run: poetry install
- run: poetry publish --build
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
run: poetry publish --build

8 changes: 7 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,13 @@
# Changelog

## 0.6.1
**release date:** 2024-05-09

* Bump dependencies
* Replace pkg_resources with importlib

## 0.6.0
**release date:** TBA
**release date:** 2021-08-09

**WARNING:** Backward incompatible changes

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "babelfish"
version = "0.6.0"
version = "0.6.1"
description = "A module to work with countries and languages"
authors = [
"Antoine Bertin <ant.bertin@gmail.com>",
Expand Down

0 comments on commit 1d7d414

Please sign in to comment.