File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 `
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ def read_file(path):
4444
4545setuptools .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" ,
Original file line number Diff line number Diff 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+ )
You can’t perform that action at this time.
0 commit comments