Skip to content

Commit 53c22ab

Browse files
committed
Release version 0.53
1 parent 5924f2d commit 53c22ab

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

CHANGELOG

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

5-
Yosys 0.52 .. Yosys 0.53-dev
5+
Yosys 0.52 .. Yosys 0.53
66
--------------------------
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.
724

825
Yosys 0.51 .. Yosys 0.52
926
--------------------------

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.52+143
163+
YOSYS_VER := 0.53
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 fee39a3.. | wc -l`/;" Makefile
186+
# sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline fee39a3.. | 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.52"
9+
yosys_ver = "0.53"
1010

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

0 commit comments

Comments
 (0)