From 3f9b4a240c842ebb04077e15a9300f7db9889d21 Mon Sep 17 00:00:00 2001 From: EmilyBourne Date: Mon, 13 May 2024 16:20:12 +0200 Subject: [PATCH] Update version and CHANGELOG for v1.12.0 (#1859) Update the version in `version.py` to 1.12.0. Update the CHANGELOG to move the changes in #1858 to a new section for version 1.12.0. --- CHANGELOG.md | 4 ++-- pyccel/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a0af0dfdf..a2168bbd74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ # Change Log All notable changes to this project will be documented in this file. -## \[UNRELEASED\] +## \[1.12.0\] - 2024-05-08 ### Added -- #1830 : Add a `pyccel.lambdify.lambdify` function to accelerate SymPy expressions. +- #1830 : Add a `pyccel.lambdify` function to accelerate SymPy expressions. - #1867 : Add a `use_out` parameter to `pyccel.lambdify` to avoid unnecessary memory allocation. - #1867 : Auto-generate a docstring for functions generated via calls to `pyccel.lambdify`. - #1868 : Hide traceback for `epyccel` and `lambdify` errors. diff --git a/pyccel/version.py b/pyccel/version.py index b01a093893..30178ac57e 100644 --- a/pyccel/version.py +++ b/pyccel/version.py @@ -1,4 +1,4 @@ """ Module specifying the current version string for pyccel """ -__version__ = "1.11.2" +__version__ = "1.12.0"