From 6d2c445aebd37261d0e33ed4d90d09fd1a7bf618 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Wed, 8 Apr 2026 16:54:50 +0200 Subject: [PATCH] Release version 0.64 --- CHANGELOG | 8 +++++++- Makefile | 4 ++-- docs/source/conf.py | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 4b76986f3..7c5465dd2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,16 +2,22 @@ List of major changes and improvements between releases ======================================================= -Yosys 0.63 .. Yosys 0.64-dev +Yosys 0.63 .. Yosys 0.64 -------------------------- + * New commands and options + - Added "synth_analogdevices" pass to support synthesis + for Analog Devices FPGAs. * Various - Removed rarely-used options from ABC/ABC9. + - Removed "-S" option from "abc" pass. + - Removed "-fast" option from "abc9" and "abc9_exe". - Calls to "abc -g AND -fast" to map logic to AND-Inverter Graph form should be replaced with "aigmap". - The above change was made to SBY, so we recommend updating it. + - Added hardware latch support for Gowin FPGAs. Yosys 0.62 .. Yosys 0.63 -------------------------- diff --git a/Makefile b/Makefile index 33ff74fa4..38093681f 100644 --- a/Makefile +++ b/Makefile @@ -161,7 +161,7 @@ ifeq ($(OS), Haiku) CXXFLAGS += -D_DEFAULT_SOURCE endif -YOSYS_VER := 0.63 +YOSYS_VER := 0.64 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 diff --git a/docs/source/conf.py b/docs/source/conf.py index 458040db0..9520948cf 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -6,7 +6,7 @@ import os project = 'YosysHQ Yosys' author = 'YosysHQ GmbH' copyright ='2026 YosysHQ GmbH' -yosys_ver = "0.63" +yosys_ver = "0.64" # select HTML theme html_theme = 'furo-ys'