From c1ad37779eea6211866a466026322416fb3a832f Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Wed, 8 May 2024 08:52:10 +0200 Subject: [PATCH] Release version 0.41 --- CHANGELOG | 13 ++++++++++++- Makefile | 4 ++-- docs/source/conf.py | 2 +- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index f42eaca27e1..e68e0a2a9c9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,8 +2,19 @@ List of major changes and improvements between releases ======================================================= -Yosys 0.40 .. Yosys 0.41-dev +Yosys 0.40 .. Yosys 0.41 -------------------------- + * New commands and options + - Added "cellmatch" pass for picking out standard cells automatically. + + * Various + - Extended the experimental incremental JSON API to allow arbitrary + smtlib subexpressions. + - Added support for using ABCs library merging when providing multiple + liberty files. + + * Verific support + - Expose library name as module attribute. Yosys 0.39 .. Yosys 0.40 -------------------------- diff --git a/Makefile b/Makefile index 12d1c31194e..2e33a9503e2 100644 --- a/Makefile +++ b/Makefile @@ -142,7 +142,7 @@ LIBS += -lrt endif endif -YOSYS_VER := 0.40+68 +YOSYS_VER := 0.41 # Note: We arrange for .gitcommit to contain the (short) commit hash in # tarballs generated with git-archive(1) using .gitattributes. The git repo @@ -158,7 +158,7 @@ endif OBJS = kernel/version_$(GIT_REV).o bumpversion: - sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline a1bb025.. | wc -l`/;" Makefile +# sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline a1bb025.. | wc -l`/;" Makefile # set 'ABCREV = default' to use abc/ as it is # diff --git a/docs/source/conf.py b/docs/source/conf.py index 182d033f8ce..fcd6adce863 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -5,7 +5,7 @@ project = 'YosysHQ Yosys' author = 'YosysHQ GmbH' copyright ='2024 YosysHQ GmbH' -yosys_ver = "0.40" +yosys_ver = "0.41" # select HTML theme html_theme = 'furo'