Skip to content

Commit

Permalink
Release 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pgorecki committed Mar 17, 2024
1 parent d8095d0 commit 0f72e32
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python 3.10
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.9"

- name: Install Poetry
run: |
Expand All @@ -40,7 +40,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
draft: false
prerelease: steps.check-version.outputs.prerelease == 'true'

- name: Publish to PyPI
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,7 @@ jobs:
run: poetry run python -m pytest -p no:sugar -q tests/

- name: Run mypy
run: poetry run mypy lato
run: poetry run mypy lato

- name: Run doctest
run: poetry pytest --doctest-modules lato
1 change: 1 addition & 0 deletions lato/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from .message import Command, Event, Query
from .transaction_context import TransactionContext

__version__ = "0.10.0"
__all__ = [
"Application",
"ApplicationModule",
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 = "lato"
version = "0.10"
version = "0.10.0"
description = "Lato is a Python microframework designed for building modular monoliths and loosely coupled applications."
authors = ["Przemysław Górecki <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 0f72e32

Please sign in to comment.