diff --git a/NEWS.md b/NEWS.md index 006f2819..2f6d050b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,14 @@ -5.0.7 2021-03-13 +5.0.9 2021-04-16 +================ + +In general, better Python 3.9 support. + +- Improve 3.9 `IS_OP` and `CONTAINS_OP` operand formatting +- Correct disassembly of 3.9 bytecode from other bytecode +- Accept 3.9.3 and 3.9.4 as a valid 3.9 version +- Accept 3.8.9 as a valid 3.8 version + +5.0.8 2021-03-13 ================ - PR #73 from mitre: @@ -9,7 +19,7 @@ - Add Python versions 3.8.8 and 3.9.2 -5.0.6 2021-01-10 +5.0.7 2021-01-10 ================ * Add Python 3.8.7 diff --git a/xdis/version.py b/xdis/version.py index cd74e2c2..dd0e6968 100644 --- a/xdis/version.py +++ b/xdis/version.py @@ -3,4 +3,4 @@ # This file is suitable for sourcing inside POSIX shell as # well as importing into Python. That's why there is no # space around "=" below. -__version__="5.0.9.dev0" # noqa +__version__="5.0.9" # noqa