diff --git a/Changelog b/Changelog index a28196393..e147000db 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,18 @@ +2021-09-08 Serge Guelton + + * Fix performance issue with assert handling + + * Fix issue in libomp detection + + * Support immediate value for some keyword parameters, esp; keep_dims + parameter + + * Better detection of generalized expression overlap + + * And extra minor fixes :-) + 2021-07-06 Serge Guelton + * Remove six, networkx and decorator dependency * Bump gast and Beniget requirements to support python 3.10 diff --git a/docs/CLI.rst b/docs/CLI.rst index 67e0bef82..9be9e8aef 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.10.0.dev0 + 0.10.0 The module-level ``__pythran__`` variable indicates that the module loaded has been pythranized:: diff --git a/pythran/version.py b/pythran/version.py index 212afb30c..a7035f9d9 100644 --- a/pythran/version.py +++ b/pythran/version.py @@ -1,3 +1,3 @@ -__version__ = '0.10.0.dev0' +__version__ = '0.10.0' __url__ = 'https://github.com/serge-sans-paille/pythran' __descr__ = 'Ahead of Time compiler for numeric kernels'