From 157aabb5831cc77d08346001c4a085f188d7c736 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Wed, 8 Oct 2025 07:51:14 +0200 Subject: [PATCH] Release version 0.58 --- CHANGELOG | 18 +++++++++++++++++- Makefile | 4 ++-- docs/source/conf.py | 2 +- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 468724e81..9139147fe 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,8 +2,24 @@ List of major changes and improvements between releases ======================================================= -Yosys 0.57 .. Yosys 0.58-dev +Yosys 0.57 .. Yosys 0.58 -------------------------- + * Various + - Run ABC passes in parallel. + - Extending support for buffer normalization. + - Overhaul of logging APIs. + - read_blif: Represent sequential elements with gate cells. + - Support multiple lib files in abc9_exe. + + * New commands and options + - Added "-wireshape" option to "show" command to allow + control the shape of wire nodes. + - Added "-relativeshare" option to "read_verilog", "synth" + and "techmap" pass for synthesis reproducibility testing. + - "write_rtlil" pass no longer sorts design, added "-sort" + option to match old behavior + - Added "-sva-continue-on-err" to "verific" pass to allow + processing designs that includes unsupported SVA. Yosys 0.56 .. Yosys 0.57 -------------------------- diff --git a/Makefile b/Makefile index da6aa71fa..ef8eacdae 100644 --- a/Makefile +++ b/Makefile @@ -164,7 +164,7 @@ ifeq ($(OS), Haiku) CXXFLAGS += -D_DEFAULT_SOURCE endif -YOSYS_VER := 0.57+268 +YOSYS_VER := 0.58 YOSYS_MAJOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f1) YOSYS_MINOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f2 | cut -d'+' -f1) YOSYS_COMMIT := $(shell echo $(YOSYS_VER) | cut -d'+' -f2) @@ -187,7 +187,7 @@ endif OBJS = kernel/version_$(GIT_REV).o bumpversion: - sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 3aca860.. | wc -l`/;" Makefile +# sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 3aca860.. | wc -l`/;" Makefile ABCMKARGS = CC="$(CXX)" CXX="$(CXX)" ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q) diff --git a/docs/source/conf.py b/docs/source/conf.py index 5b93e2e70..49f8f5eab 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -6,7 +6,7 @@ import os project = 'YosysHQ Yosys' author = 'YosysHQ GmbH' copyright ='2025 YosysHQ GmbH' -yosys_ver = "0.57" +yosys_ver = "0.58" # select HTML theme html_theme = 'furo-ys'