diff --git a/CHANGELOG b/CHANGELOG index 3553bfea..577f4339 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,12 @@ +2021-06-29 1.3.1 +-------------------- + +Bug fixes: + +* Update dummy eggs to hold the correct abi tag for Python 3.8 (#413) +* 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 -------------------- @@ -14,7 +23,7 @@ Maintenance: * Fix path to the okonomiyaki test build project (#379) * Update script that verifies okonomiyaki can read eds eggs (#396) -Big fixes: +Bug fixes: * Add rh6 and rh7 dummy eggs to setup.py (#369) * EPDPlatform.pep425_tag will always return 10.6 for macos platforms (#374, #387) diff --git a/setup.py b/setup.py index dc8f21ca..9440f843 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ MINOR = 3 MICRO = 1 -IS_RELEASED = False +IS_RELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)