diff --git a/Changelog b/Changelog index e147000db..d5fac485b 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,18 @@ +2021-12-08 Serge Guelton + + * Upgrade xsimd version to 8.0.5 + + * Performance fix on np.dot with transposed parameters + + * Raise an error when no specs are given and we want to generate a native module + + * Support more complex transpose expression + + * Honor quotes in config files for *FLAGS + + * Add pythran option -ftime-report to print out the time spent on optimizations + * Support isinstance when second argument is a tuple + 2021-09-08 Serge Guelton * Fix performance issue with assert handling diff --git a/docs/CLI.rst b/docs/CLI.rst index cca76d13c..57c5f7978 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.11.0.dev0 + 0.11.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 e59d8110e..e205f5c84 100644 --- a/pythran/version.py +++ b/pythran/version.py @@ -1,3 +1,3 @@ -__version__ = '0.11.0.dev0' +__version__ = '0.11.0' __url__ = 'https://github.com/serge-sans-paille/pythran' __descr__ = 'Ahead of Time compiler for numeric kernels'