From c4b8a4aeecbb1ff955696cedbc05c6e37b563238 Mon Sep 17 00:00:00 2001 From: Chris Mayo Date: Thu, 28 Jan 2021 19:20:24 +0000 Subject: [PATCH] Changes for release 10.0.1 --- doc/changelog.txt | 8 ++++++++ setup.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/doc/changelog.txt b/doc/changelog.txt index 494772ab..16512134 100644 --- a/doc/changelog.txt +++ b/doc/changelog.txt @@ -1,3 +1,11 @@ +10.0.1 (released 29.1.2021) + +Changes: +- Minimum supported version of Beautiful Soup is 4.8.1 + +Fixes: +- wsgi: Fix failure due to status logging being enabled + 10.0 (released 15.1.2021) Features: diff --git a/setup.py b/setup.py index 39b86fff..0b0d33c8 100755 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ from distutils import util, log from distutils.core import Distribution # the application version -AppVersion = "10.0.1.dev0" +AppVersion = "10.0.1" # the application name AppName = "LinkChecker" Description = "check links in web documents or full websites"