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"