Incrementing version to v1.2.0

This commit is contained in:
Jacob Alexander
2022-08-29 01:13:39 -07:00
parent 7862d2a0c4
commit 583fe9e42d
2 changed files with 5 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
## v1.2.0 (2022-08-29)
- Added support for Apple Silicon
## v1.1.1 (2022-05-23) ## v1.1.1 (2022-05-23)
- Added Python 3.10 support - Added Python 3.10 support
- aarch64 wheel support - aarch64 wheel support

View File

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