Skip to content

Commit db72ec3

Browse files
committed
Release version 0.54
1 parent 0b19f62 commit db72ec3

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

CHANGELOG

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,21 @@
22
List of major changes and improvements between releases
33
=======================================================
44

5-
Yosys 0.53 .. Yosys 0.54-dev
5+
Yosys 0.53 .. Yosys 0.54
66
--------------------------
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
720

821
Yosys 0.52 .. Yosys 0.53
922
--------------------------

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ ifeq ($(OS), Haiku)
160160
CXXFLAGS += -D_DEFAULT_SOURCE
161161
endif
162162

163-
YOSYS_VER := 0.53+101
163+
YOSYS_VER := 0.54
164164
YOSYS_MAJOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f1)
165165
YOSYS_MINOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f2 | cut -d'+' -f1)
166166
YOSYS_COMMIT := $(shell echo $(YOSYS_VER) | cut -d'+' -f2)
@@ -183,7 +183,7 @@ endif
183183
OBJS = kernel/version_$(GIT_REV).o
184184

185185
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
187187

188188
ABCMKARGS = CC="$(CXX)" CXX="$(CXX)" ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q)
189189

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
project = 'YosysHQ Yosys'
77
author = 'YosysHQ GmbH'
88
copyright ='2025 YosysHQ GmbH'
9-
yosys_ver = "0.53"
9+
yosys_ver = "0.54"
1010

1111
# select HTML theme
1212
html_theme = 'furo-ys'

0 commit comments

Comments
 (0)