From ec5afc66a120524d14b2ec165a0bbc0f71b82d1b Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 22 Feb 2021 13:15:17 +0300 Subject: [PATCH] Release 3.2.6.post1 --- ANNOUNCE.rst | 28 +++++++++++++++++++++++++--- Cheetah/Version.py | 4 ++-- README.rst | 4 ++-- SetupConfig.py | 2 +- docs/news.rst | 4 ++-- 5 files changed, 32 insertions(+), 10 deletions(-) diff --git a/ANNOUNCE.rst b/ANNOUNCE.rst index 4cfd7d92..95c29aa3 100644 --- a/ANNOUNCE.rst +++ b/ANNOUNCE.rst @@ -1,12 +1,34 @@ Hello! -I'm pleased to announce version 3.2.7a0, the 1st alpha for bugfix release -3.2.7 of branch 3.2 of CheetahTemplate3. +I'm pleased to announce version 3.2.6.post1, the 1st post-release +for release 3.2.6 of branch 3.2 of CheetahTemplate3. What's new in CheetahTemplate3 ============================== +Improvement and refactoring in CI and tests with ``tox``. +There were no changes in the main code, there is no need to upgrade +unless you gonna run tests. + +The contributors for this release are +Andrew J. Hesford and Victor Stinner. +Many thanks! + +This is the first release that provide binary wheels for Python 3.9. + +Tests: + + - Add Python 3.9 to ``tox.ini``. + + - Refactor ``tox.ini``. + +CI: + + - Run tests with Python 3.9 at Travis and AppVeyor. + + - Run tests for Python 3.4 with ``tox`` under Python 3.5. + What is CheetahTemplate3 ======================== @@ -27,7 +49,7 @@ Development: https://github.com/CheetahTemplate3 Download: -https://pypi.org/project/Cheetah3/3.2.7a0 +https://pypi.org/project/Cheetah3/3.2.6.post1 News and changes: https://cheetahtemplate.org/news.html diff --git a/Cheetah/Version.py b/Cheetah/Version.py index 4e0bb88e..e8734f34 100755 --- a/Cheetah/Version.py +++ b/Cheetah/Version.py @@ -1,7 +1,7 @@ #!/usr/bin/env python -Version = '3.2.7a0' -VersionTuple = (3, 2, 7, 'alpha', 0) +Version = '3.2.6.post1' +VersionTuple = (3, 2, 6, 'post', 1) MinCompatibleVersion = '3.0.0a1' MinCompatibleVersionTuple = (3, 0, 0, 'alpha', 1) diff --git a/README.rst b/README.rst index 1e6a5306..0d104de2 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ -Cheetah Template 3.2.7a0 -======================== +Cheetah Template 3.2.6.post1 +============================ Cheetah3 is a free and open source template engine and code generation tool. diff --git a/SetupConfig.py b/SetupConfig.py index d3a75d19..da68d1d7 100644 --- a/SetupConfig.py +++ b/SetupConfig.py @@ -40,7 +40,7 @@ 'Cheetah.Utils', ] classifiers = [line.strip() for line in '''\ - Development Status :: 4 - Beta + Development Status :: 5 - Production/Stable Intended Audience :: Developers Intended Audience :: System Administrators License :: OSI Approved :: MIT License diff --git a/docs/news.rst b/docs/news.rst index 01b52521..36d6e91c 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -1,8 +1,8 @@ News ==== -Development (master) --------------------- +3.2.6.post1 (2021-02-22) +------------------------ Tests: