Skip to content

Commit

Permalink
Release 3.3.2b2
Browse files Browse the repository at this point in the history
  • Loading branch information
phdru committed Aug 8, 2023
1 parent e71b103 commit b96880c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
9 changes: 7 additions & 2 deletions ANNOUNCE.rst
Original file line number Diff line number Diff line change
@@ -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.


Expand All @@ -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``.
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cheetah/Version.py
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
5 changes: 5 additions & 0 deletions LATEST-CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit b96880c

Please sign in to comment.