Increment version to v1.3.0

This commit is contained in:
Jacob Alexander
2023-01-26 16:43:40 -08:00
parent 01c4469e08
commit 33c453eff7
2 changed files with 12 additions and 2 deletions

View File

@@ -1,3 +1,13 @@
## v1.3.0 (2023-01-26)
- Update to bundled capnproto-0.10.3
- Add Python 3.11 to Github Actions builds (#306)
- Prevent race condition in example code (#305)
## v1.2.2 (2022-12-01)
- Update bundled bundled capnp to 0.8.1 due to CVE-2022-46149
- Bundle lib/capnp_api.h and helpers/capabilityHelper.cpp (#301)
- Avoid reading random values for reader options from dangling reference (#300)
## v1.2.1 (2022-09-11)
- Fix packaging for Apple Silicon

View File

@@ -21,8 +21,8 @@ from buildutils.bundle import fetch_libcapnp
_this_dir = os.path.dirname(__file__)
MAJOR = 1
MINOR = 2
MICRO = 2
MINOR = 3
MICRO = 0
TAG = ""
VERSION = "%d.%d.%d%s" % (MAJOR, MINOR, MICRO, TAG)