Prepare for v2.2.2 release

- Update CHANGELOG.md
This commit is contained in:
Jacob Alexander
2026-01-16 20:28:32 -08:00
parent c9541f98b3
commit 93ba29f916
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
## v2.2.2 (2026-01-16)
- Revert Data fields to bytes and add get_data_as_view for zero-copy access (#390)
- Fix use-after-free in async write causing corruption with large payloads (#392)
- Update macOS builds from 13 to 15 (#393)
## v2.2.1 (2025-10-21) ## v2.2.1 (2025-10-21)
- Make `message.to_dict()` return bytes for DATA type field (#386) - Make `message.to_dict()` return bytes for DATA type field (#386)

View File

@@ -24,7 +24,7 @@ from buildutils.bundle import fetch_libcapnp
MAJOR = 2 MAJOR = 2
MINOR = 2 MINOR = 2
MICRO = 1 MICRO = 2
TAG = "" TAG = ""
VERSION = "%d.%d.%d%s" % (MAJOR, MINOR, MICRO, TAG) VERSION = "%d.%d.%d%s" % (MAJOR, MINOR, MICRO, TAG)