diff --git a/ANNOUNCE.rst b/ANNOUNCE.rst index 7ddfc5fe..d1453f13 100644 --- a/ANNOUNCE.rst +++ b/ANNOUNCE.rst @@ -1,6 +1,6 @@ Hello! -I'm pleased to announce version 3.3.2b1, the 1st beta release +I'm pleased to announce version 3.3.2b2, the 1st beta release of release 3.3.2 of branch 3.3 of CheetahTemplate3. @@ -13,6 +13,11 @@ Bug fixes: - Fixed printing to stdout in ``CheetahWrapper``. +Code style: + + - Fixed a ``F811`` warning from ``flake8``: + redefinition of unused 'join' in ``ImportManager.py``. + CI: - CI(GHActions): Install all Python and PyPy versions from ``conda-forge``. @@ -34,7 +39,7 @@ Site: https://cheetahtemplate.org/ Download: -https://pypi.org/project/CT3/3.3.2b1 +https://pypi.org/project/CT3/3.3.2b2 News and changes: https://cheetahtemplate.org/news.html diff --git a/Cheetah/Version.py b/Cheetah/Version.py index 51606f84..7752a0e9 100755 --- a/Cheetah/Version.py +++ b/Cheetah/Version.py @@ -1,7 +1,7 @@ #!/usr/bin/env python -Version = '3.3.2b1' -VersionTuple = (3, 3, 2, 'beta', 1) +Version = '3.3.2b2' +VersionTuple = (3, 3, 2, 'beta', 2) MinCompatibleVersion = '3.0.0a1' MinCompatibleVersionTuple = (3, 0, 0, 'alpha', 1) diff --git a/LATEST-CHANGES.rst b/LATEST-CHANGES.rst index 35e45c22..e54d8619 100644 --- a/LATEST-CHANGES.rst +++ b/LATEST-CHANGES.rst @@ -2,6 +2,11 @@ Bug fixes: - Fixed printing to stdout in ``CheetahWrapper``. +Code style: + + - Fixed a ``F811`` warning from ``flake8``: + redefinition of unused 'join' in ``ImportManager.py``. + CI: - CI(GHActions): Install all Python and PyPy versions from ``conda-forge``. diff --git a/README.rst b/README.rst index 6fd625af..7a6971ee 100644 --- a/README.rst +++ b/README.rst @@ -1,4 +1,4 @@ -Cheetah Template 3.3.2b1 +Cheetah Template 3.3.2b2 ======================== Cheetah3 is a free and open source (MIT) Python template engine.