From 4128527e226c0e5fd8635d65a8b7d2fdd3ff2c78 Mon Sep 17 00:00:00 2001 From: Oleg Butuzov Date: Sun, 1 Mar 2020 21:34:55 +0200 Subject: [PATCH] chores(release): Version Bumped to 0.3.0 * `feature`: #8 `robots.txt` supported (only checking what content allowed to be crawled) * `feature`: github actions supported image (see #28) * `docs`: github actions supported image (see #28) * `bugfix`: #51 links with \n character are working now. * `bugfix`: #46 trailing slash in redirection urls. * `bugfix`: #33 external redirection error --- CHANGELOG.md | 8 ++++++++ deadlinks/__version__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35962be..52cae6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # CHANGELOG +0.3.0 - 01-03-2020 + * `feature`: #8 `robots.txt` supported (only checking what content allowed to be crawled) + * `feature`: github actions supported image (see #28) + * `docs`: github actions supported image (see #28) + * `bugfix`: #51 links with \n character are working now. + * `bugfix`: #46 trailing slash in redirection urls. + * `bugfix`: #33 external redirection error + 0.2.1 - 09-12-2019 * `docs`: Added AzurePilelines and CircleCI integration examples (https://deadlinks.readthedocs.io/). * `bugfix`: Improved a bit local files checks (https://github.com/butuzov/deadlinks/issues/45). diff --git a/deadlinks/__version__.py b/deadlinks/__version__.py index 10caa35..2211c27 100644 --- a/deadlinks/__version__.py +++ b/deadlinks/__version__.py @@ -23,7 +23,7 @@ """ # package meta data -__app_version__ = "0.2.1" +__app_version__ = "0.3.0" __app_package__ = "deadlinks" __app_license__ = "Apache License 2.0" __app_website__ = "https://github.com/butuzov/deadlinks"