Skip to content

Commit 3aca860

Browse files
committed
Release version 0.57
1 parent cd7f924 commit 3aca860

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGELOG

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

5-
Yosys 0.56 .. Yosys 0.57-dev
5+
Yosys 0.56 .. Yosys 0.57
66
--------------------------
7+
* New commands and options
8+
- Added "-initstates" option to "abstract" pass.
9+
- Added "-set-assumes" option to "equiv_induct"
10+
and "equiv_simple" passes.
11+
- Added "-always" option to "raise_error" pass.
12+
- Added "-hierarchy" option to "stat" pass.
13+
- Added "-noflatten" option to "synth_quicklogic" pass.
14+
15+
* Various
16+
- smtbmc: Support skipping steps in cover mode.
17+
- write_btor: support $buf.
18+
- read_verilog: support package import.
719

820
Yosys 0.55 .. Yosys 0.56
921
--------------------------

Makefile

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

162-
YOSYS_VER := 0.56+220
162+
YOSYS_VER := 0.57
163163
YOSYS_MAJOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f1)
164164
YOSYS_MINOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f2 | cut -d'+' -f1)
165165
YOSYS_COMMIT := $(shell echo $(YOSYS_VER) | cut -d'+' -f2)
@@ -182,7 +182,7 @@ endif
182182
OBJS = kernel/version_$(GIT_REV).o
183183

184184
bumpversion:
185-
sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 9c447ad.. | wc -l`/;" Makefile
185+
# sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 9c447ad.. | wc -l`/;" Makefile
186186

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

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.56"
9+
yosys_ver = "0.57"
1010

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

0 commit comments

Comments
 (0)