Skip to content
This repository has been archived by the owner on Mar 24, 2024. It is now read-only.

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
lsbardel committed Dec 17, 2022
1 parent a2cc630 commit 43aff33
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion openapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Minimal OpenAPI asynchronous server application"""
__version__ = "3.1.0"
__version__ = "3.1.1"
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 = "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"
Expand Down

0 comments on commit 43aff33

Please sign in to comment.