Skip to content

Commit

Permalink
Prepare patch release
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Apr 10, 2022
1 parent 40189f3 commit 47a8e8d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.0.1
current_version = 3.0.2
commit = False
tag = False

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
---------------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion twill/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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/'
Expand Down

0 comments on commit 47a8e8d

Please sign in to comment.