Skip to content

Commit

Permalink
Merge pull request #29 from bbc2/release-0.2.0
Browse files Browse the repository at this point in the history
Release version 0.2.0
  • Loading branch information
bbc2 authored Feb 16, 2023
2 parents d2af146 + 35200bf commit 553115e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
python-version: ['3.9', '3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install --upgrade pip poetry
Expand All @@ -17,8 +17,8 @@ jobs:
check-dev:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- run: pip install --upgrade pip poetry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- run: pip install --upgrade pip poetry
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.2.0 - 2023-02-16

- Add support for Python 3.11.

## 0.1.3 - 2022-06-30

- Initial release.
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 = "discolinks"
version = "0.1.3"
version = "0.2.0"
description = "Command-line tool which checks a website for broken links."
authors = ["Bertrand Bonnefoy-Claudet <bertrand@bertrandbc.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/discolinks/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.3"
__version__ = "0.2.0"

0 comments on commit 553115e

Please sign in to comment.