Skip to content

Commit 8d82736

Browse files
committed
Release 3.4.0b5
1 parent 52355b2 commit 8d82736

File tree

5 files changed

+18
-6
lines changed

5 files changed

+18
-6
lines changed

ANNOUNCE.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Hello!
22

3-
I'm pleased to announce version 3.4.0b4, the first beta
3+
I'm pleased to announce version 3.4.0b5, the 5th beta
44
of release 3.4.0 of branch 3.4 of CheetahTemplate3.
55

66

@@ -14,6 +14,12 @@ Bug fixes:
1414

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

17+
- Use ``cache_from_source`` in ``ImportManager`` to find out
18+
``.pyc``/``.pyo`` byte-code files.
19+
20+
- Fixed unmarshalling ``.pyc``/``.pyo`` byte-code files
21+
in ``ImportManager``.
22+
1723
- Fixed ``Template.webInput``: Use ``urllib.parse.parse_qs``
1824
instead of ``cgi.FieldStorage``; Python 3.13 dropped ``cgi``.
1925

@@ -60,7 +66,7 @@ Site:
6066
https://cheetahtemplate.org/
6167

6268
Download:
63-
https://pypi.org/project/CT3/3.4.0b4
69+
https://pypi.org/project/CT3/3.4.0b5
6470

6571
News and changes:
6672
https://cheetahtemplate.org/news.html

Cheetah/Version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22

3-
Version = '3.4.0b4'
4-
VersionTuple = (3, 4, 0, 'beta', 4)
3+
Version = '3.4.0b5'
4+
VersionTuple = (3, 4, 0, 'beta', 5)
55

66
MinCompatibleVersion = '3.0.0a1'
77
MinCompatibleVersionTuple = (3, 0, 0, 'alpha', 1)

LATEST-CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ Bug fixes:
55

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

8+
- Use ``cache_from_source`` in ``ImportManager`` to find out
9+
``.pyc``/``.pyo`` byte-code files.
10+
11+
- Fixed unmarshalling ``.pyc``/``.pyo`` byte-code files
12+
in ``ImportManager``.
13+
814
- Fixed ``Template.webInput``: Use ``urllib.parse.parse_qs``
915
instead of ``cgi.FieldStorage``; Python 3.13 dropped ``cgi``.
1016

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Cheetah Template 3.4.0b4
1+
Cheetah Template 3.4.0b5
22
========================
33

44
Cheetah3 is a free and open source (MIT) Python template engine.

docs/news.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
News
22
====
33

4-
3.4.0b4 (2024-11-10)
4+
3.4.0b5 (2024-11-22)
55
--------------------
66

77
Bug fixes:

0 commit comments

Comments
 (0)