File tree Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Expand file tree Collapse file tree 3 files changed +15
-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.51 .. Yosys 0.52-dev
5
+ Yosys 0.51 .. Yosys 0.52
6
6
--------------------------
7
+ * New commands and options
8
+ - Added "-pattern-limit" option to "share" pass to limit analysis effort.
9
+ - Added "libcache" pass to control caching of technology library
10
+ data parsed from liberty files.
11
+ - Added "read_verilog_file_list" to parse verilog file list.
12
+
13
+ * Various
14
+ - Added $macc_v2 cell.
15
+ - Improve lexer performance and zlib support for "read_liberty".
16
+ - opt_expr: optimize pow of 2 cells.
17
+
7
18
8
19
Yosys 0.50 .. Yosys 0.51
9
20
--------------------------
Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ ifeq ($(OS), Haiku)
159
159
CXXFLAGS += -D_DEFAULT_SOURCE
160
160
endif
161
161
162
- YOSYS_VER := 0.51+166
162
+ YOSYS_VER := 0.52
163
163
YOSYS_MAJOR := $(shell echo $(YOSYS_VER ) | cut -d'.' -f1)
164
164
YOSYS_MINOR := $(shell echo $(YOSYS_VER ) | cut -d'.' -f2 | cut -d'+' -f1)
165
165
YOSYS_COMMIT := $(shell echo $(YOSYS_VER ) | cut -d'+' -f2)
@@ -182,7 +182,7 @@ endif
182
182
OBJS = kernel/version_$(GIT_REV ) .o
183
183
184
184
bumpversion :
185
- sed -i " /^YOSYS_VER := / s/+[0-9][0-9]*$$ /+` git log --oneline c4b5190.. | wc -l` /;" Makefile
185
+ # sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline c4b5190.. | wc -l`/;" Makefile
186
186
187
187
ABCMKARGS = CC="$(CXX ) " CXX="$(CXX ) " ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q )
188
188
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.51 "
9
+ yosys_ver = "0.52 "
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