File tree Expand file tree Collapse file tree 3 files changed +17
-4
lines changed Expand file tree Collapse file tree 3 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 2
2
List of major changes and improvements between releases
3
3
=======================================================
4
4
5
- Yosys 0.53 .. Yosys 0.54-dev
5
+ Yosys 0.53 .. Yosys 0.54
6
6
--------------------------
7
+ * New commands and options
8
+ - Added "-genlib" option to "abc_new" and "abc9_exe" passes.
9
+ - Added "-verbose" and "-quiet" options to "libcache" pass.
10
+ - Added "-no-sort" option to "write_aiger" pass.
11
+
12
+ * Various
13
+ - Added "muldiv_c" peepopt.
14
+ - Accept (and ignore) SystemVerilog unique/priority if.
15
+ - "read_verilog" copy inout ports in and out of functions/tasks.
16
+ - Enable single-bit vector wires in RTLIL.
17
+
18
+ * Xilinx support
19
+ - Single-port URAM mapping to support memories 2048 x 144b
7
20
8
21
Yosys 0.52 .. Yosys 0.53
9
22
--------------------------
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ ifeq ($(OS), Haiku)
160
160
CXXFLAGS += -D_DEFAULT_SOURCE
161
161
endif
162
162
163
- YOSYS_VER := 0.53+101
163
+ YOSYS_VER := 0.54
164
164
YOSYS_MAJOR := $(shell echo $(YOSYS_VER ) | cut -d'.' -f1)
165
165
YOSYS_MINOR := $(shell echo $(YOSYS_VER ) | cut -d'.' -f2 | cut -d'+' -f1)
166
166
YOSYS_COMMIT := $(shell echo $(YOSYS_VER ) | cut -d'+' -f2)
@@ -183,7 +183,7 @@ endif
183
183
OBJS = kernel/version_$(GIT_REV ) .o
184
184
185
185
bumpversion :
186
- sed -i " /^YOSYS_VER := / s/+[0-9][0-9]*$$ /+` git log --oneline 53c22ab.. | wc -l` /;" Makefile
186
+ # sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 53c22ab.. | wc -l`/;" Makefile
187
187
188
188
ABCMKARGS = CC="$(CXX ) " CXX="$(CXX ) " ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q )
189
189
Original file line number Diff line number Diff line change 6
6
project = 'YosysHQ Yosys'
7
7
author = 'YosysHQ GmbH'
8
8
copyright = '2025 YosysHQ GmbH'
9
- yosys_ver = "0.53 "
9
+ yosys_ver = "0.54 "
10
10
11
11
# select HTML theme
12
12
html_theme = 'furo-ys'
You can’t perform that action at this time.
0 commit comments