Skip to content

Commit

Permalink
Release 3.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
phdru committed Oct 22, 2023
1 parent e1a8cfa commit 54b3078
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
omitBodyDuringUpdate: true
omitNameDuringUpdate: true
omitPrereleaseDuringUpdate: true
prerelease: true
prerelease: false
replacesArtifacts: false
skipIfReleaseExists: false
updateOnlyUnreleased: false
Expand Down
21 changes: 17 additions & 4 deletions ANNOUNCE.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,26 @@
Hello!

I'm pleased to announce version 3.3.3b2, the second beta release
of release 3.3.3 of branch 3.3 of CheetahTemplate3.
I'm pleased to announce version 3.3.3, the fourth release
of branch 3.3 of CheetahTemplate3.


What's new in CheetahTemplate3
==============================

The contributors for this release are ...
Minor features:

- Protect ``import cgi`` in preparation to Python 3.13.

Tests:

- Run tests with Python 3.12.

CI:

- GHActions: Ensure ``pip`` only if needed

This is to work around a problem in conda with Python 3.7 -
it brings in wrong version of ``setuptools`` incompatible with Python 3.7.


What is CheetahTemplate3
Expand All @@ -26,7 +39,7 @@ Site:
https://cheetahtemplate.org/

Download:
https://pypi.org/project/CT3/3.3.3b2
https://pypi.org/project/CT3/3.3.3

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.3b2'
VersionTuple = (3, 3, 3, 'beta', 2)
Version = '3.3.3'
VersionTuple = (3, 3, 3, 'final', 0)

MinCompatibleVersion = '3.0.0a1'
MinCompatibleVersionTuple = (3, 0, 0, 'alpha', 1)
Expand Down
15 changes: 15 additions & 0 deletions LATEST-CHANGES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Minor features:

- Protect ``import cgi`` in preparation to Python 3.13.

Tests:

- Run tests with Python 3.12.

CI:

- GHActions: Ensure ``pip`` only if needed

This is to work around a problem in conda with Python 3.7 -
it brings in wrong version of ``setuptools`` incompatible with Python 3.7.

4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Cheetah Template 3.3.3b2
========================
Cheetah Template 3.3.3
======================

Cheetah3 is a free and open source (MIT) Python template engine.
It's a fork of the original CheetahTemplate library.
Expand Down
4 changes: 2 additions & 2 deletions docs/news.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
News
====

Development (master)
--------------------
3.3.3 (2023-10-22)
------------------

Minor features:

Expand Down

0 comments on commit 54b3078

Please sign in to comment.