Prepare for v2.2.1 release

- Update CHANGELOG.md
This commit is contained in:
Jacob Alexander
2025-10-21 15:48:51 -07:00
parent c14fd7036a
commit d349dfbd39
2 changed files with 4 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
## v2.2.1 (2025-10-21)
- Make `message.to_dict()` return bytes for DATA type field (#386)
## v2.2.0 (2025-09-12)
- Add binary support in dictionaries via base64 encoding (#351)
- Add structure-free read_multiple_bytes_packed (#378)

View File

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