Skip to content

Commit 5bafeb7

Browse files
committed
Release version 0.60
1 parent 07a6905 commit 5bafeb7

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,16 @@
22
List of major changes and improvements between releases
33
=======================================================
44

5-
Yosys 0.59 .. Yosys 0.60-dev
5+
Yosys 0.59 .. Yosys 0.60
66
--------------------------
7+
* Various
8+
- read_verilog: suport unsized parameters.
9+
- Added static library compile option.
10+
11+
* New commands and options
12+
- Added "sdc" pass for reading SDC files.
13+
- Added experimental "sdc_expand" and "opensta" for OpenSTA integration.
14+
- Added "icell_liberty" pass for used internal cells.
715

816
Yosys 0.58 .. Yosys 0.59
917
--------------------------

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ ifeq ($(OS), Haiku)
162162
CXXFLAGS += -D_DEFAULT_SOURCE
163163
endif
164164

165-
YOSYS_VER := 0.59+134
165+
YOSYS_VER := 0.60
166166
YOSYS_MAJOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f1)
167167
YOSYS_MINOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f2 | cut -d'+' -f1)
168168
YOSYS_COMMIT := $(shell echo $(YOSYS_VER) | cut -d'+' -f2)
@@ -185,7 +185,7 @@ endif
185185
OBJS = kernel/version_$(GIT_REV).o
186186

187187
bumpversion:
188-
sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 03eb220.. | wc -l`/;" Makefile
188+
# sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 03eb220.. | wc -l`/;" Makefile
189189

190190
ABCMKARGS = CC="$(CXX)" CXX="$(CXX)" ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q)
191191

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
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.59"
9+
yosys_ver = "0.60"
1010

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

0 commit comments

Comments
 (0)