Skip to content

Commit c4b5190

Browse files
committed
Release version 0.51
1 parent 8163907 commit c4b5190

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

Diff for: CHANGELOG

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

5-
Yosys 0.50 .. Yosys 0.51-dev
5+
Yosys 0.50 .. Yosys 0.51
66
--------------------------
7+
* New commands and options
8+
- Added "abstract" pass to allow reducing and never increasing
9+
the constraints on a circuit's behavior in a formal verification setting.
10+
11+
* Various
12+
- "splitcells" pass now splits "aldff" cells.
13+
- FunctionalIR documentation
14+
15+
* QuickLogic support
16+
- Added IOFF inference for qlf_k6n10f
17+
18+
* Intel support
19+
- Fixed RAM and DSP support.
20+
- Overall performance improvement for "synth_intel".
721

822
Yosys 0.49 .. Yosys 0.50
923
--------------------------

Diff for: 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.50+111
156+
YOSYS_VER := 0.51
157157
YOSYS_MAJOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f1)
158158
YOSYS_MINOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f2 | cut -d'+' -f1)
159159
YOSYS_COMMIT := $(shell echo $(YOSYS_VER) | cut -d'+' -f2)
@@ -176,7 +176,7 @@ endif
176176
OBJS = kernel/version_$(GIT_REV).o
177177

178178
bumpversion:
179-
sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline b5170e1.. | wc -l`/;" Makefile
179+
# sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline b5170e1.. | wc -l`/;" Makefile
180180

181181
ABCMKARGS = CC="$(CXX)" CXX="$(CXX)" ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q)
182182

Diff for: 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 ='2025 YosysHQ GmbH'
9-
yosys_ver = "0.50"
9+
yosys_ver = "0.51"
1010

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

0 commit comments

Comments
 (0)