Skip to content

Commit

Permalink
Release 3.4.0b5
Browse files Browse the repository at this point in the history
  • Loading branch information
phdru committed Nov 22, 2024
1 parent 52355b2 commit 8d82736
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
10 changes: 8 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.4.0b4, the first beta
I'm pleased to announce version 3.4.0b5, the 5th beta
of release 3.4.0 of branch 3.4 of CheetahTemplate3.


Expand All @@ -14,6 +14,12 @@ Bug fixes:

- Fixed absolute import in ``ImportHooks`` under Python 3.

- Use ``cache_from_source`` in ``ImportManager`` to find out
``.pyc``/``.pyo`` byte-code files.

- Fixed unmarshalling ``.pyc``/``.pyo`` byte-code files
in ``ImportManager``.

- Fixed ``Template.webInput``: Use ``urllib.parse.parse_qs``
instead of ``cgi.FieldStorage``; Python 3.13 dropped ``cgi``.

Expand Down Expand Up @@ -60,7 +66,7 @@ Site:
https://cheetahtemplate.org/

Download:
https://pypi.org/project/CT3/3.4.0b4
https://pypi.org/project/CT3/3.4.0b5

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.4.0b4'
VersionTuple = (3, 4, 0, 'beta', 4)
Version = '3.4.0b5'
VersionTuple = (3, 4, 0, 'beta', 5)

MinCompatibleVersion = '3.0.0a1'
MinCompatibleVersionTuple = (3, 0, 0, 'alpha', 1)
Expand Down
6 changes: 6 additions & 0 deletions LATEST-CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ Bug fixes:

- Fixed absolute import in ``ImportHooks`` under Python 3.

- Use ``cache_from_source`` in ``ImportManager`` to find out
``.pyc``/``.pyo`` byte-code files.

- Fixed unmarshalling ``.pyc``/``.pyo`` byte-code files
in ``ImportManager``.

- Fixed ``Template.webInput``: Use ``urllib.parse.parse_qs``
instead of ``cgi.FieldStorage``; Python 3.13 dropped ``cgi``.

Expand Down
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.4.0b4
Cheetah Template 3.4.0b5
========================

Cheetah3 is a free and open source (MIT) Python template engine.
Expand Down
2 changes: 1 addition & 1 deletion docs/news.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
News
====

3.4.0b4 (2024-11-10)
3.4.0b5 (2024-11-22)
--------------------

Bug fixes:
Expand Down

0 comments on commit 8d82736

Please sign in to comment.