Prepare for v2.2.3 release

- Update CHANGELOG.md
This commit is contained in:
Jacob Alexander
2026-05-30 09:50:22 -07:00
parent fb3408f81d
commit e94fae1cfe
2 changed files with 8 additions and 1 deletions

View File

@@ -1,3 +1,10 @@
## v2.2.3 (2026-05-30)
- Fix test failures on Python 3.14 (#394)
- Refine documentation for PyCustomMessageBuilder (#395)
- Replace black and flake8 with ruff for linting and formatting
- ci: deploy docs to gh-pages on tagged releases
- Add scripts/release-pypi.sh for downloading CI artifacts and uploading to PyPI
## v2.2.2 (2026-01-16) ## v2.2.2 (2026-01-16)
- Revert Data fields to bytes and add get_data_as_view for zero-copy access (#390) - 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) - Fix use-after-free in async write causing corruption with large payloads (#392)

View File

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