Skip to content

Commit

Permalink
2.0.5 (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanking13 authored Nov 24, 2022
1 parent d35c92e commit 081ce67
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/healthcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
python-version: [3.6]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ jobs:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.6'
uses: actions/setup-python@v3

- name: Install dependencies
run: |
Expand Down
12 changes: 5 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,9 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: 3.10.2
- uses: pre-commit/action@v2.0.3
- uses: pre-commit/action@v3.0.0
check:
runs-on: ubuntu-latest
strategy:
Expand All @@ -24,10 +22,10 @@ jobs:
python-version: ["3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -46,7 +44,7 @@ jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build docs
uses: ammaraskar/sphinx-action@master
with:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Unreleased
## v2.0.5 (2022/11/24)

- SRT 좌석 유형 옵션 기능 추가 ([#201](https://github.com/ryanking13/SRT/pull/201))

## v2.0.4 (2022/10/31)

- SRT 중복 예약 오류 반환 로직 제거 ([#193](https://github.com/ryanking13/SRT/pull/193))
Expand Down
2 changes: 1 addition & 1 deletion SRT/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .seat_type import SeatType
from .srt import SRT

__version__ = "2.0.4"
__version__ = "2.0.5"

__all__ = [
"SRT",
Expand Down

0 comments on commit 081ce67

Please sign in to comment.