diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 53817f3..bb4f09c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.1 +current_version = 3.0.2 commit = False tag = False diff --git a/README.md b/README.md index 4423585..b76be7d 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ twill: a simple scripting language for web browsing twill is a simple scripting language intended for programmatic or automated browsing of websites. -The current version 3.0.1 supports Python 3.6 to 3.10. +The current version 3.0.2 supports Python 3.6 to 3.10. See also the [changelog](https://twill-tools.github.io/twill/changelog.html) for a summary of the things that have been changed and improved since version 2.0, and the [acknowledgements](https://twill-tools.github.io/twill/overview.html#acknowledgements) for a short overview of the earlier history of twill. diff --git a/docs/changelog.rst b/docs/changelog.rst index 2f12ac5..2f1bde8 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,12 @@ ChangeLog ========= +3.0.2 (released 2022-04-10) +--------------------------- + +* Save HTML file with browser encoding or as UTF-8 (#9). +* Do not modify root logger any more (#10). + 3.0.1 (released 2021-12-04) --------------------------- diff --git a/docs/conf.py b/docs/conf.py index 23bac97..c6546cf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,11 +18,11 @@ # -- Project information ----------------------------------------------------- project = 'twill' -copyright = '2021, C. Titus Brown, Ben R. Taylor et al' +copyright = '2022, C. Titus Brown, Ben R. Taylor et al' author = 'C. Titus Brown, Ben R. Taylor et al' # The full version, including alpha/beta/rc tags -version = release = '3.0.1' +version = release = '3.0.2' # -- General configuration --------------------------------------------------- diff --git a/twill/__init__.py b/twill/__init__.py index aa103e7..20043b3 100644 --- a/twill/__init__.py +++ b/twill/__init__.py @@ -20,7 +20,7 @@ import sys import os.path -__version__ = '3.0.1' +__version__ = '3.0.2' __url__ = 'https://github.com/twill-tools/twill' __download_url__ = 'https://pypi.org/project/twill/'