From 8ef3eeaa154352d31f41904a79792678a8539f10 Mon Sep 17 00:00:00 2001 From: serge-sans-paille Date: Mon, 6 Dec 2021 22:25:06 +0100 Subject: [PATCH] =?UTF-8?q?0.11.0=20-=20=20krao=C3=B1enn?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/CLI.rst | 2 +- pythran/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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'