From 541d12e557b06b9a8eac4d4e4974c04eb07a7261 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= Date: Sat, 13 Apr 2024 22:30:40 +0100 Subject: [PATCH] version: 1.33.0 --- CHANGELOG.md | 14 +++++++++++++- setup.py | 2 +- src/appier/base.py | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e29ae8d7..28aa7d7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -* Support for Cron based scheduling using `SchedulerCron` class - [#65](https://github.com/hivesolutions/appier/issues/65) +* ### Changed @@ -17,10 +17,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +* + +## [1.33.0] - 2024-01-17 + +### Added + +* Support for Cron based scheduling using `SchedulerCron` class - [#65](https://github.com/hivesolutions/appier/issues/65) + +### Fixed + * Problems with raw strings and regular expressions, invalid escape sequences - [#63](https://github.com/hivesolutions/appier/issues/63) ## [1.32.0] - 2024-01-17 +### Added + * Support for the `reply_to` argument to control the "Reply-To" MIME header * Support for `return_path` and `priority` email values diff --git a/setup.py b/setup.py index 4307c056..248e0033 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ def read_file(path): setuptools.setup( name="appier", - version="1.32.0", + version="1.33.0", author="Hive Solutions Lda.", author_email="development@hive.pt", description="Appier Framework", diff --git a/src/appier/base.py b/src/appier/base.py index 5d38ad20..031a6430 100644 --- a/src/appier/base.py +++ b/src/appier/base.py @@ -94,7 +94,7 @@ """ The name to be used to describe the framework while working on its own environment, this is just a descriptive value """ -VERSION = "1.32.0" +VERSION = "1.33.0" """ The version of the framework that is currently installed this value may be used for debugging/diagnostic purposes """