diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 830c6b1..4c9520b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 637f152..3c0fc95 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 01e75ff..1c40c32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/pyproject.toml b/pyproject.toml index a0a70e2..e424fab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "MIT" diff --git a/src/discolinks/__version__.py b/src/discolinks/__version__.py index ae73625..d3ec452 100644 --- a/src/discolinks/__version__.py +++ b/src/discolinks/__version__.py @@ -1 +1 @@ -__version__ = "0.1.3" +__version__ = "0.2.0"