From 3238d767c4b91da36b54c9ff5c38336742789432 Mon Sep 17 00:00:00 2001 From: Bertrand Bonnefoy-Claudet Date: Tue, 3 Sep 2024 09:53:16 +0200 Subject: [PATCH] Release version 0.3.0 --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- src/discolinks/__version__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c40c32..168644b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.3.0 - 2024-09-03 + +- Add an `--exclude` parameter to avoid retrieving some families of URLs. +- Fix the handling of interruptions (SIGINT, SIGTERM and uncaught exceptions). +- Remove spurious warning when encountering XML instead of HTML. +- Improve error message on network timeout. + ## 0.2.0 - 2023-02-16 - Add support for Python 3.11. diff --git a/pyproject.toml b/pyproject.toml index db881d8..907a803 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "discolinks" -version = "0.2.0" +version = "0.3.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 d3ec452..493f741 100644 --- a/src/discolinks/__version__.py +++ b/src/discolinks/__version__.py @@ -1 +1 @@ -__version__ = "0.2.0" +__version__ = "0.3.0"