Skip to content

Commit fee39a3

Browse files
committed
Release version 0.52
1 parent f602248 commit fee39a3

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG

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

5-
Yosys 0.51 .. Yosys 0.52-dev
5+
Yosys 0.51 .. Yosys 0.52
66
--------------------------
7+
* New commands and options
8+
- Added "-pattern-limit" option to "share" pass to limit analysis effort.
9+
- Added "libcache" pass to control caching of technology library
10+
data parsed from liberty files.
11+
- Added "read_verilog_file_list" to parse verilog file list.
12+
13+
* Various
14+
- Added $macc_v2 cell.
15+
- Improve lexer performance and zlib support for "read_liberty".
16+
- opt_expr: optimize pow of 2 cells.
17+
718

819
Yosys 0.50 .. Yosys 0.51
920
--------------------------

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ ifeq ($(OS), Haiku)
159159
CXXFLAGS += -D_DEFAULT_SOURCE
160160
endif
161161

162-
YOSYS_VER := 0.51+166
162+
YOSYS_VER := 0.52
163163
YOSYS_MAJOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f1)
164164
YOSYS_MINOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f2 | cut -d'+' -f1)
165165
YOSYS_COMMIT := $(shell echo $(YOSYS_VER) | cut -d'+' -f2)
@@ -182,7 +182,7 @@ endif
182182
OBJS = kernel/version_$(GIT_REV).o
183183

184184
bumpversion:
185-
sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline c4b5190.. | wc -l`/;" Makefile
185+
# sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline c4b5190.. | wc -l`/;" Makefile
186186

187187
ABCMKARGS = CC="$(CXX)" CXX="$(CXX)" ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q)
188188

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.51"
9+
yosys_ver = "0.52"
1010

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

0 commit comments

Comments
 (0)