File tree 3 files changed +18
-4
lines changed
3 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 2
2
List of major changes and improvements between releases
3
3
=======================================================
4
4
5
- Yosys 0.50 .. Yosys 0.51-dev
5
+ Yosys 0.50 .. Yosys 0.51
6
6
--------------------------
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".
7
21
8
22
Yosys 0.49 .. Yosys 0.50
9
23
--------------------------
Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ ifeq ($(OS), Haiku)
153
153
CXXFLAGS += -D_DEFAULT_SOURCE
154
154
endif
155
155
156
- YOSYS_VER := 0.50+111
156
+ YOSYS_VER := 0.51
157
157
YOSYS_MAJOR := $(shell echo $(YOSYS_VER ) | cut -d'.' -f1)
158
158
YOSYS_MINOR := $(shell echo $(YOSYS_VER ) | cut -d'.' -f2 | cut -d'+' -f1)
159
159
YOSYS_COMMIT := $(shell echo $(YOSYS_VER ) | cut -d'+' -f2)
@@ -176,7 +176,7 @@ endif
176
176
OBJS = kernel/version_$(GIT_REV ) .o
177
177
178
178
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
180
180
181
181
ABCMKARGS = CC="$(CXX ) " CXX="$(CXX ) " ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q )
182
182
Original file line number Diff line number Diff line change 6
6
project = 'YosysHQ Yosys'
7
7
author = 'YosysHQ GmbH'
8
8
copyright = '2025 YosysHQ GmbH'
9
- yosys_ver = "0.50 "
9
+ yosys_ver = "0.51 "
10
10
11
11
# select HTML theme
12
12
html_theme = 'furo-ys'
You can’t perform that action at this time.
0 commit comments