diff --git a/CHANGELOG b/CHANGELOG index 577f4339..0d8f231d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,12 @@ +2021-07-01 1.3.2 +-------------------- + +Bug fixes: + +* Fix relative imports (#426) +* Fix compute_abi_tag to support Python 3.8 (#424) + + 2021-06-29 1.3.1 -------------------- @@ -7,6 +16,7 @@ Bug fixes: * Pass the runtime version to from_epd_string (#414) * Fix _guess_abi_tag and _guess_abi_from_python to support python 3.8 (#418) + 2021-03-21 1.3.0 -------------------- diff --git a/setup.py b/setup.py index 04e0fd6b..ad92fdbb 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ MINOR = 3 MICRO = 2 -IS_RELEASED = False +IS_RELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)