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

Commit 43aff33

Browse files
committed
release
1 parent a2cc630 commit 43aff33

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
- name: run tests
3939
run: make test
4040
- name: upload coverage
41-
if: matrix.python-version == '3.10'
41+
if: matrix.python-version == '3.11'
4242
run: make upload-coverage
4343
- name: publish
44-
if: ${{ matrix.python-version == '3.10' && github.event.head_commit.message == 'release' }}
44+
if: ${{ matrix.python-version == '3.11' && github.event.head_commit.message == 'release' }}
4545
run: make publish
4646
- name: create github release
4747
if: ${{ matrix.python-version == '3.12' && github.event.head_commit.message == 'release' }}

.github/workflows/update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Python
1515
uses: actions/setup-python@v2
1616
with:
17-
python-version: "3.10"
17+
python-version: "3.11"
1818
- name: install poetry
1919
run: pip install -U pip poetry
2020
- name: update dependencies

openapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Minimal OpenAPI asynchronous server application"""
2-
__version__ = "3.1.0"
2+
__version__ = "3.1.1"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aio-openapi"
3-
version = "3.1.0"
3+
version = "3.1.1"
44
description = "Minimal OpenAPI asynchronous server application"
55
documentation = "https://aio-openapi.readthedocs.io"
66
repository = "https://github.com/quantmind/aio-openapi"

0 commit comments

Comments
 (0)