Skip to content

Commit 80ba43d

Browse files
committed
Release version 0.44
1 parent e5d8505 commit 80ba43d

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.43 .. Yosys 0.44-dev
5+
Yosys 0.43 .. Yosys 0.44
66
--------------------------
7+
* Various
8+
- Added ENABLE_LTO compile option to enable link time
9+
optimizations.
10+
- Build support for Haiku OS.
11+
12+
* New commands and options
13+
- Added "keep_hierarchy" pass to add attribute with
14+
same name to modules based on cost.
15+
- Added options "-noopt","-bloat" and "-check_cost" to
16+
"test_cell" pass.
17+
18+
* New back-ends
19+
- Added initial PolarFire support. ( synth_microchip )
720

821
Yosys 0.42 .. Yosys 0.43
922
--------------------------

Makefile

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

156-
YOSYS_VER := 0.43+89
156+
YOSYS_VER := 0.44
157157

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

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

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

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
project = 'YosysHQ Yosys'
66
author = 'YosysHQ GmbH'
77
copyright ='2024 YosysHQ GmbH'
8-
yosys_ver = "0.43"
8+
yosys_ver = "0.44"
99

1010
# select HTML theme
1111
html_theme = 'furo'

0 commit comments

Comments
 (0)