Skip to content

Commit 647d61d

Browse files
committed
Release version 0.47
1 parent 2999f55 commit 647d61d

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

CHANGELOG

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

5-
Yosys 0.46 .. Yosys 0.47-dev
5+
Yosys 0.46 .. Yosys 0.47
66
--------------------------
7+
* Various
8+
- Added cxxopts library for handling command line arguments.
9+
- Added docs generation from cells help output.
10+
11+
* New commands and options
12+
- Added "-json" option to "synth_xilinx" pass.
13+
- Added "-derive_luts" option to "cellmatch" pass.
14+
- Added "t:@<name>" syntax to "select" pass.
15+
- Added "-list-mod" option to "select" pass.
16+
- Removed deprecated "qwp" pass.
17+
18+
* Verific support
19+
- Initial state handling for VHDL assertions.
720

821
Yosys 0.45 .. Yosys 0.46
922
--------------------------

Makefile

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

157-
YOSYS_VER := 0.46+147
157+
YOSYS_VER := 0.47
158158

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

172172
bumpversion:
173-
sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline e97731b.. | wc -l`/;" Makefile
173+
# sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline e97731b.. | wc -l`/;" Makefile
174174

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

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.46"
9+
yosys_ver = "0.47"
1010

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

0 commit comments

Comments
 (0)