Skip to content

Commit 1b07d20

Browse files
committedMar 12, 2025·
Next dev cycle
1 parent c4b5190 commit 1b07d20

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed
 

‎CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
List of major changes and improvements between releases
33
=======================================================
44

5+
Yosys 0.51 .. Yosys 0.52-dev
6+
--------------------------
7+
58
Yosys 0.50 .. Yosys 0.51
69
--------------------------
710
* New commands and options

‎Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ ifeq ($(OS), Haiku)
153153
CXXFLAGS += -D_DEFAULT_SOURCE
154154
endif
155155

156-
YOSYS_VER := 0.51
156+
YOSYS_VER := 0.51+0
157157
YOSYS_MAJOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f1)
158158
YOSYS_MINOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f2 | cut -d'+' -f1)
159159
YOSYS_COMMIT := $(shell echo $(YOSYS_VER) | cut -d'+' -f2)
@@ -176,7 +176,7 @@ endif
176176
OBJS = kernel/version_$(GIT_REV).o
177177

178178
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 c4b5190.. | wc -l`/;" Makefile
180180

181181
ABCMKARGS = CC="$(CXX)" CXX="$(CXX)" ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q)
182182

0 commit comments

Comments
 (0)
Please sign in to comment.