Skip to content

Commit

Permalink
Release 3.3.3b1
Browse files Browse the repository at this point in the history
  • Loading branch information
phdru committed Oct 21, 2023
1 parent faf4525 commit 9f6f6da
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 8 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: false
prerelease: true
replacesArtifacts: false
skipIfReleaseExists: false
updateOnlyUnreleased: false
Expand Down
19 changes: 16 additions & 3 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.3a0, the first alpha release
I'm pleased to announce version 3.3.3b1, the first beta release
of release 3.3.3 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.3a0
https://pypi.org/project/CT3/3.3.3b1

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.3a0'
VersionTuple = (3, 3, 3, 'alpha', 0)
Version = '3.3.3b1'
VersionTuple = (3, 3, 3, 'beta', 1)

MinCompatibleVersion = '3.0.0a1'
MinCompatibleVersionTuple = (3, 0, 0, 'alpha', 1)
Expand Down
14 changes: 14 additions & 0 deletions LATEST-CHANGES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
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.
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.3a0
Cheetah Template 3.3.3b1
========================

Cheetah3 is a free and open source (MIT) Python template engine.
Expand Down
2 changes: 1 addition & 1 deletion SetupConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
'Cheetah.Utils',
]
classifiers = [line.strip() for line in '''\
Development Status :: 3 - Alpha
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Expand Down

0 comments on commit 9f6f6da

Please sign in to comment.