Skip to content

Commit aaa5347

Browse files
committed
Release version 0.48
1 parent 1f6153a commit aaa5347

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

CHANGELOG

+25-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,32 @@
22
List of major changes and improvements between releases
33
=======================================================
44

5-
Yosys 0.47 .. Yosys 0.48-dev
5+
Yosys 0.47 .. Yosys 0.48
66
--------------------------
7+
* Various
8+
- Removed "read_ilang" deprecated pass.
9+
- Enhanced boxing features in the experimental "abc_new" command.
10+
- Added new Tcl methods for design inspection.
11+
- Added clock enable inference to "dfflibmap".
12+
- Added a Han-Carlson and Sklansky option for $lcu mapping.
13+
14+
* New commands and options
15+
- Added "-nopeepopt" option to "clk2fflogic" pass.
16+
- Added "-liberty" and "-dont_use" options to "clockgate" pass.
17+
- Added "-ignore_buses" option to "read_liberty" pass.
18+
- Added "-dont_map" option to "techmap" pass.
19+
- Added "-selected" option to "write_json" pass.
20+
- Added "wrapcell" command for creating wrapper modules
21+
around selected cells.
22+
- Added "portarcs" command for deriving propagation timing arcs.
23+
- Added "setenv" command for setting environment variables.
24+
25+
* Gowin support
26+
- Added "-family" option to "synth_gowin" pass.
27+
- Cell definitions split by family.
28+
29+
* Verific support
30+
- Improved blackbox support.
731

832
Yosys 0.46 .. Yosys 0.47
933
--------------------------

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ ifeq ($(OS), Haiku)
155155
CXXFLAGS += -D_DEFAULT_SOURCE
156156
endif
157157

158-
YOSYS_VER := 0.47+254
158+
YOSYS_VER := 0.48
159159

160160
# Note: We arrange for .gitcommit to contain the (short) commit hash in
161161
# tarballs generated with git-archive(1) using .gitattributes. The git repo
@@ -171,7 +171,7 @@ endif
171171
OBJS = kernel/version_$(GIT_REV).o
172172

173173
bumpversion:
174-
sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 647d61d.. | wc -l`/;" Makefile
174+
# sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 647d61d.. | wc -l`/;" Makefile
175175

176176
ABCMKARGS = CC="$(CXX)" CXX="$(CXX)" ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q)
177177

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
project = 'YosysHQ Yosys'
77
author = 'YosysHQ GmbH'
88
copyright ='2024 YosysHQ GmbH'
9-
yosys_ver = "0.47"
9+
yosys_ver = "0.48"
1010

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

0 commit comments

Comments
 (0)