3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-03-09 23:00:32 +00:00

Release version 0.63

This commit is contained in:
Miodrag Milanovic 2026-03-04 07:46:57 +01:00
parent b7d013e6bf
commit 70a11c6bf0
3 changed files with 16 additions and 4 deletions

View file

@ -2,8 +2,20 @@
List of major changes and improvements between releases
=======================================================
Yosys 0.62 .. Yosys 0.63-dev
Yosys 0.62 .. Yosys 0.63
--------------------------
* Various
- Added DSP inference for Gowin GW1N and GW2A.
- Added support for subtract in preadder for Xilinx arch.
- Added infrastructure to run a sat solver as a command.
* New commands and options
- Added "-ignore-unknown-cells" option to "equiv_induct"
and "equiv_simple" pass.
- Added "-force-params" option to "memory_libmap" pass.
- Added "-select-solver" option to "sat" pass.
- Added "-default_params" option to "write_verilog" pass.
- Added "-nodsp" option to "synth_gowin" pass.
Yosys 0.61 .. Yosys 0.62
--------------------------

View file

@ -161,7 +161,7 @@ ifeq ($(OS), Haiku)
CXXFLAGS += -D_DEFAULT_SOURCE
endif
YOSYS_VER := 0.62
YOSYS_VER := 0.63
ifneq (, $(shell command -v git 2>/dev/null))
ifneq (, $(shell git rev-parse --git-dir 2>/dev/null))
@ -170,7 +170,7 @@ ifneq (, $(shell git rev-parse --git-dir 2>/dev/null))
YOSYS_VER := $(YOSYS_VER)+$(GIT_COMMIT_COUNT)
endif
else
YOSYS_VER := $(YOSYS_VER)+post
# YOSYS_VER := $(YOSYS_VER)+post
endif
endif

View file

@ -6,7 +6,7 @@ import os
project = 'YosysHQ Yosys'
author = 'YosysHQ GmbH'
copyright ='2026 YosysHQ GmbH'
yosys_ver = "0.62"
yosys_ver = "0.63"
# select HTML theme
html_theme = 'furo-ys'