Skip to content

Commit 01962ba

Browse files
committed
Update for 0.61.2 release
1 parent 405ac6e commit 01962ba

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Zappa Changelog
22

3+
## 0.61.2
4+
5+
* Add support for Python 3.14 runtime (#1398)
6+
- Updated `SUPPORTED_VERSIONS` to include Python 3.14
7+
- Added Python 3.14 to `get_runtime_from_python_version()`
8+
- Updated CI pipeline to test against Python 3.14
9+
- Added `test_get_manylinux_python314` test case
10+
- Updated documentation and templates to reflect Python 3.14 support
11+
* Fix manylinux wheel matching for PEP 425 sorted platform tags (#1401)
12+
- Wheel filename matching now supports both sorted (legacy first) and unsorted platform tag orders
13+
- Added `test_manylinux_wheel_platform_tag_sort_order` test for tag ordering compatibility
14+
315
## 0.61.1
416

517
* Add support for nested JSON configurations in `settings` command (#1397)

zappa/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ def running_in_docker() -> bool:
3131
)
3232
raise RuntimeError(err_msg)
3333

34-
__version__ = "0.61.1"
34+
__version__ = "0.61.2"

0 commit comments

Comments
 (0)