mirror of
https://github.com/YosysHQ/yosys
synced 2025-09-11 04:01:28 +00:00
Release version 0.57
This commit is contained in:
parent
cd7f924290
commit
3aca86049e
3 changed files with 16 additions and 4 deletions
14
CHANGELOG
14
CHANGELOG
|
@ -2,8 +2,20 @@
|
||||||
List of major changes and improvements between releases
|
List of major changes and improvements between releases
|
||||||
=======================================================
|
=======================================================
|
||||||
|
|
||||||
Yosys 0.56 .. Yosys 0.57-dev
|
Yosys 0.56 .. Yosys 0.57
|
||||||
--------------------------
|
--------------------------
|
||||||
|
* New commands and options
|
||||||
|
- Added "-initstates" option to "abstract" pass.
|
||||||
|
- Added "-set-assumes" option to "equiv_induct"
|
||||||
|
and "equiv_simple" passes.
|
||||||
|
- Added "-always" option to "raise_error" pass.
|
||||||
|
- Added "-hierarchy" option to "stat" pass.
|
||||||
|
- Added "-noflatten" option to "synth_quicklogic" pass.
|
||||||
|
|
||||||
|
* Various
|
||||||
|
- smtbmc: Support skipping steps in cover mode.
|
||||||
|
- write_btor: support $buf.
|
||||||
|
- read_verilog: support package import.
|
||||||
|
|
||||||
Yosys 0.55 .. Yosys 0.56
|
Yosys 0.55 .. Yosys 0.56
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -159,7 +159,7 @@ ifeq ($(OS), Haiku)
|
||||||
CXXFLAGS += -D_DEFAULT_SOURCE
|
CXXFLAGS += -D_DEFAULT_SOURCE
|
||||||
endif
|
endif
|
||||||
|
|
||||||
YOSYS_VER := 0.56+220
|
YOSYS_VER := 0.57
|
||||||
YOSYS_MAJOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f1)
|
YOSYS_MAJOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f1)
|
||||||
YOSYS_MINOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f2 | cut -d'+' -f1)
|
YOSYS_MINOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f2 | cut -d'+' -f1)
|
||||||
YOSYS_COMMIT := $(shell echo $(YOSYS_VER) | cut -d'+' -f2)
|
YOSYS_COMMIT := $(shell echo $(YOSYS_VER) | cut -d'+' -f2)
|
||||||
|
@ -182,7 +182,7 @@ endif
|
||||||
OBJS = kernel/version_$(GIT_REV).o
|
OBJS = kernel/version_$(GIT_REV).o
|
||||||
|
|
||||||
bumpversion:
|
bumpversion:
|
||||||
sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 9c447ad.. | wc -l`/;" Makefile
|
# sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 9c447ad.. | wc -l`/;" Makefile
|
||||||
|
|
||||||
ABCMKARGS = CC="$(CXX)" CXX="$(CXX)" ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q)
|
ABCMKARGS = CC="$(CXX)" CXX="$(CXX)" ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q)
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ import os
|
||||||
project = 'YosysHQ Yosys'
|
project = 'YosysHQ Yosys'
|
||||||
author = 'YosysHQ GmbH'
|
author = 'YosysHQ GmbH'
|
||||||
copyright ='2025 YosysHQ GmbH'
|
copyright ='2025 YosysHQ GmbH'
|
||||||
yosys_ver = "0.56"
|
yosys_ver = "0.57"
|
||||||
|
|
||||||
# select HTML theme
|
# select HTML theme
|
||||||
html_theme = 'furo-ys'
|
html_theme = 'furo-ys'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue