Skip to content

Commit 74e9385

Browse files
joamagclaude
andcommitted
version: 1.37.0
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 49d6202 commit 74e9385

3 files changed

Lines changed: 20 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Changed
1515

16+
*
17+
18+
### Fixed
19+
20+
*
21+
22+
## [1.37.0] - 2026-03-30
23+
24+
### Added
25+
26+
*
27+
28+
### Changed
29+
1630
* Replaced `asyncio.ensure_future()` with `asyncio.create_task()` in ASGI start response
1731
* Updated CI workflows to support Python 3.13 and 3.14
1832
* Switched deploy pipeline to use `python -m build` instead of `setup.py sdist bdist_wheel`

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def read_file(path):
4444

4545
setuptools.setup(
4646
name="appier",
47-
version="1.36.0",
47+
version="1.37.0",
4848
author="Hive Solutions Lda.",
4949
author_email="development@hive.pt",
5050
description="Appier Framework",

src/appier/test/smtp.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,14 @@ def test_plain(self):
4343
mime["To"] = ", ".join([address_mime])
4444

4545
result = mime.as_string()
46-
self.assertEqual(result, 'Content-Type: text/plain; charset="utf-8"\n\
46+
self.assertEqual(
47+
result,
48+
'Content-Type: text/plain; charset="utf-8"\n\
4749
MIME-Version: 1.0\n\
4850
Content-Transfer-Encoding: base64\n\
4951
Subject: Hello World\n\
5052
From: =?utf-8?q?Jo=C3=A3o_Magalh=C3=A3es?= <joamag@hive.pt>\n\
5153
To: =?utf-8?q?Jo=C3=A3o_Magalh=C3=A3es?= <joamag@hive.pt>\n\
5254
\n\
53-
SGVsbG8gV29ybGQ=\n')
55+
SGVsbG8gV29ybGQ=\n',
56+
)

0 commit comments

Comments
 (0)