29 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
29 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
30 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
30 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
31 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
31 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
32 """ |
32 """ |
33 |
33 |
34 __version__ = "3.0.1" |
34 __version__ = "3.1.0" |
35 |
35 |
36 """ News |
36 """ News |
|
37 3.1.0 (2023-07-29) |
|
38 |
|
39 - Drop support for EOL python 3.6 / 3.7 |
|
40 - Remove ``ContinueInFinally`` check (only relevant in python < 3.8) |
|
41 - Fix forward annotations inside a nested scope |
|
42 - Produce an error when a definition shadows an unused variable |
|
43 - Fix accessed global annotation being redefined in a local scope |
|
44 - Allow redefinition of functions across ``match`` arms |
|
45 - Fix potential ``None`` for ``lineno`` during tokenization errors |
|
46 - Add support for PEP 695 and python 3.12 |
|
47 |
37 3.0.1 (2022-11-24) |
48 3.0.1 (2022-11-24) |
38 |
49 |
39 - Fix crash on augmented assign to ``print`` builtin |
50 - Fix crash on augmented assign to ``print`` builtin |
40 |
51 |
41 3.0.0 (2022-11-23) |
52 3.0.0 (2022-11-23) |