File tree Expand file tree Collapse file tree 3 files changed +20
-4
lines changed
Expand file tree Collapse file tree 3 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 22List of major changes and improvements between releases
33=======================================================
44
5- Yosys 0.57 .. Yosys 0.58-dev
5+ Yosys 0.57 .. Yosys 0.58
66--------------------------
7+ * Various
8+ - Run ABC passes in parallel.
9+ - Extending support for buffer normalization.
10+ - Overhaul of logging APIs.
11+ - read_blif: Represent sequential elements with gate cells.
12+ - Support multiple lib files in abc9_exe.
13+
14+ * New commands and options
15+ - Added "-wireshape" option to "show" command to allow
16+ control the shape of wire nodes.
17+ - Added "-relativeshare" option to "read_verilog", "synth"
18+ and "techmap" pass for synthesis reproducibility testing.
19+ - "write_rtlil" pass no longer sorts design, added "-sort"
20+ option to match old behavior
21+ - Added "-sva-continue-on-err" to "verific" pass to allow
22+ processing designs that includes unsupported SVA.
723
824Yosys 0.56 .. Yosys 0.57
925--------------------------
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ ifeq ($(OS), Haiku)
164164CXXFLAGS += -D_DEFAULT_SOURCE
165165endif
166166
167- YOSYS_VER := 0.57+268
167+ YOSYS_VER := 0.58
168168YOSYS_MAJOR := $(shell echo $(YOSYS_VER ) | cut -d'.' -f1)
169169YOSYS_MINOR := $(shell echo $(YOSYS_VER ) | cut -d'.' -f2 | cut -d'+' -f1)
170170YOSYS_COMMIT := $(shell echo $(YOSYS_VER ) | cut -d'+' -f2)
@@ -187,7 +187,7 @@ endif
187187OBJS = kernel/version_$(GIT_REV ) .o
188188
189189bumpversion :
190- sed -i " /^YOSYS_VER := / s/+[0-9][0-9]*$$ /+` git log --oneline 3aca860.. | wc -l` /;" Makefile
190+ # sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 3aca860.. | wc -l`/;" Makefile
191191
192192ABCMKARGS = CC="$(CXX ) " CXX="$(CXX ) " ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q )
193193
Original file line number Diff line number Diff line change 66project = 'YosysHQ Yosys'
77author = 'YosysHQ GmbH'
88copyright = '2025 YosysHQ GmbH'
9- yosys_ver = "0.57 "
9+ yosys_ver = "0.58 "
1010
1111# select HTML theme
1212html_theme = 'furo-ys'
You can’t perform that action at this time.
0 commit comments