Prepare for v2.0.0b2 release

- Update CHANGELOG.md
This commit is contained in:
Jacob Alexander
2023-11-25 11:04:29 -08:00
parent 3aade70bfa
commit 84830d6357
2 changed files with 20 additions and 1 deletions

View File

@@ -1,3 +1,22 @@
## v2.0.0b2 (2023-11-25)
- Fix broken test in test_load (#329)
- Update README example to async code (#331)
- Fix 'AttributeError: '_UnixSelectorEventLoop' object has no attribute 'call_soon'
- Delete and update some Python 3.7-specific todo notes
- Make a server fail early when the KJ loop is not running
- Update documentation to async code (#331) (#332)
- Fix retransmit bug for large messages causing message corruption
- Unlock the GIL for all capnp functions that do IO
- Handle exceptions from server callbacks
- Disable the use of ninja for windows builds
- DynamicCapabilityClient fix
- Make `reraise_kj_exception` available to downstream
- Support `_DynamicListReader` in `_setDynamicField`
- Fix re-raising of KjException
- Allow cancellation of all capability contexts
- Corner case for cancelled server methods that raise exceptions
- Some fixes to the magic import system
## v2.0.0b1 (2023-10-03)
- Update to bundled capnproto-1.0.1
- Remove support for Python 3.7

View File

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