diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3281a28..f224aa4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,10 +38,10 @@ jobs: - name: run tests run: make test - name: upload coverage - if: matrix.python-version == '3.10' + if: matrix.python-version == '3.11' run: make upload-coverage - name: publish - if: ${{ matrix.python-version == '3.10' && github.event.head_commit.message == 'release' }} + if: ${{ matrix.python-version == '3.11' && github.event.head_commit.message == 'release' }} run: make publish - name: create github release if: ${{ matrix.python-version == '3.12' && github.event.head_commit.message == 'release' }} diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 16a225c..4d4fa65 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: "3.10" + python-version: "3.11" - name: install poetry run: pip install -U pip poetry - name: update dependencies diff --git a/openapi/__init__.py b/openapi/__init__.py index 65dd49f..2f2f5b1 100644 --- a/openapi/__init__.py +++ b/openapi/__init__.py @@ -1,2 +1,2 @@ """Minimal OpenAPI asynchronous server application""" -__version__ = "3.1.0" +__version__ = "3.1.1" diff --git a/pyproject.toml b/pyproject.toml index 1febfb4..4947f79 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aio-openapi" -version = "3.1.0" +version = "3.1.1" description = "Minimal OpenAPI asynchronous server application" documentation = "https://aio-openapi.readthedocs.io" repository = "https://github.com/quantmind/aio-openapi"