From ab9f31aca68b42a69bd87e09a635f3630b051280 Mon Sep 17 00:00:00 2001 From: serge-sans-paille Date: Mon, 27 May 2024 23:49:36 +0200 Subject: [PATCH] 0.16.1 - piched --- Changelog | 4 ++++ docs/CLI.rst | 2 +- pythran/version.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 7126e6b37..fb2d462e0 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,7 @@ +2024-05-27 Serge Guelton + + * Fix massive memory leak in ndarray i troduced in 0.16.0 + 2024-05-14 Serge Guelton * Support numpy.vectorize, numpy.argsort's kind keyword, real/imag on diff --git a/docs/CLI.rst b/docs/CLI.rst index 6c6f10734..7c02fd3c1 100644 --- a/docs/CLI.rst +++ b/docs/CLI.rst @@ -29,7 +29,7 @@ The generated native ``.so`` module can then be used with the Python interpreter Pythran version can be dumped through ``--version``:: $> pythran --version 2>&1 - 0.16.0 + 0.16.1 The module-level ``__pythran__`` variable indicates that the module loaded has been pythranized:: diff --git a/pythran/version.py b/pythran/version.py index 156c0c153..14da714e4 100644 --- a/pythran/version.py +++ b/pythran/version.py @@ -1,2 +1,2 @@ -__version__ = '0.16.0' +__version__ = '0.16.1' __descr__ = 'Ahead of Time compiler for numeric kernels'