Skip to content

Commit

Permalink
Release 3.3.2b1
Browse files Browse the repository at this point in the history
  • Loading branch information
phdru committed Aug 8, 2023
1 parent 3335664 commit 18bd7be
Show file tree
Hide file tree
Showing 6 changed files with 24 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 @@ -117,7 +117,7 @@ jobs:
omitBodyDuringUpdate: true
omitNameDuringUpdate: true
omitPrereleaseDuringUpdate: true
prerelease: false
prerelease: true
replacesArtifacts: false
skipIfReleaseExists: false
updateOnlyUnreleased: false
Expand Down
15 changes: 12 additions & 3 deletions ANNOUNCE.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
Hello!

I'm pleased to announce version 3.3.2a0, the 1st alpha release
I'm pleased to announce version 3.3.2b1, the 1st beta release
of release 3.3.2 of branch 3.3 of CheetahTemplate3.


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

The contributors for this release are:
The contributor for this release is nate.k. Thanks!

Bug fixes:

- Fixed printing to stdout in ``CheetahWrapper``.

CI:

- CI(GHActions): Install all Python and PyPy versions from ``conda-forge``.


What is CheetahTemplate3
========================
Expand All @@ -25,7 +34,7 @@ Site:
https://cheetahtemplate.org/

Download:
https://pypi.org/project/CT3/3.3.2a0
https://pypi.org/project/CT3/3.3.2b1

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

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

- Fixed printing to stdout in ``CheetahWrapper``.

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.2a0
Cheetah Template 3.3.2b1
========================

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 18bd7be

Please sign in to comment.