File tree Expand file tree Collapse file tree 3 files changed +21
-4
lines changed Expand file tree Collapse file tree 3 files changed +21
-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.52 .. Yosys 0.53-dev
5
+ Yosys 0.52 .. Yosys 0.53
6
6
--------------------------
7
+ * New commands and options
8
+ - Added "constmap" pass for technology mapping of coarse constant value.
9
+ - Added "timeest" pass to estimate the critical path in clock domain.
10
+ - Added "-blackbox" option to "cutpoint" pass to cut all instances of
11
+ blackboxes.
12
+ - Added "-noscopeinfo" option to "cutpoint" pass.
13
+ - Added "-nocleanup" option to "flatten" pass to prevent removal of
14
+ unused submodules.
15
+ - Added "-declockgate" option to "formalff" pass that turns clock
16
+ gating into clock enables.
17
+
18
+ * Various
19
+ - Added "$scopeinfo" cells to preserve information during "cutpoint" pass.
20
+ - Added dataflow tracking documentation.
21
+ - share: Restrict activation patterns to potentially relevant signal.
22
+ - liberty: More robust parsing.
23
+ - verific: bit blast RAM if using mem2reg attribute.
7
24
8
25
Yosys 0.51 .. Yosys 0.52
9
26
--------------------------
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.52+143
163
+ YOSYS_VER := 0.53
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 fee39a3.. | wc -l` /;" Makefile
186
+ # sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline fee39a3.. | 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.52 "
9
+ yosys_ver = "0.53 "
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