diff --git a/CHANGELOG b/CHANGELOG index 1ebaeb24aa5..d1c1f560a83 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,9 +2,21 @@ List of major changes and improvements between releases ======================================================= -Yosys 0.48 .. Yosys 0.49-dev +Yosys 0.49 .. Yosys 0.50-dev -------------------------- +Yosys 0.48 .. Yosys 0.49 +-------------------------- + * Various + - "$scopeinfo" cells are now part of JSON export by default. + - Added option to specify hierarchical separator for "flatten". + - Improved "wreduce" to handle more cases of operator size reduction. + - Updated hashing interface, see docs/source/yosys_internals/hashing.rst + for breaking API changes. + + * New commands and options + - Added "-noscopeinfo" option to "json" and "write_json" pass. + Yosys 0.47 .. Yosys 0.48 -------------------------- * Various diff --git a/Makefile b/Makefile index 20c463064cf..90365f8663f 100644 --- a/Makefile +++ b/Makefile @@ -171,7 +171,7 @@ ifeq ($(OS), Haiku) CXXFLAGS += -D_DEFAULT_SOURCE endif -YOSYS_VER := 0.48+98 +YOSYS_VER := 0.49+1 # Note: We arrange for .gitcommit to contain the (short) commit hash in # tarballs generated with git-archive(1) using .gitattributes. The git repo @@ -187,7 +187,7 @@ endif OBJS = kernel/version_$(GIT_REV).o bumpversion: - sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline aaa5347.. | wc -l`/;" Makefile + sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 427b5a2.. | wc -l`/;" Makefile ABCMKARGS = CC="$(CXX)" CXX="$(CXX)" ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q) diff --git a/backends/json/json.cc b/backends/json/json.cc index 20d42f626ed..749fe1fc313 100644 --- a/backends/json/json.cc +++ b/backends/json/json.cc @@ -408,7 +408,7 @@ struct JsonBackend : public Backend { log("\n"); log("The \"offset\" and \"upto\" fields are skipped if their value would be 0.\n"); log("They don't affect connection semantics, and are only used to preserve original\n"); - log("HDL bit indexing."); + log("HDL bit indexing.\n"); log("And is:\n"); log("\n"); log(" {\n"); diff --git a/docs/source/conf.py b/docs/source/conf.py index de0b9cf4ddf..a27b4dc6456 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -5,8 +5,8 @@ project = 'YosysHQ Yosys' author = 'YosysHQ GmbH' -copyright ='2024 YosysHQ GmbH' -yosys_ver = "0.48" +copyright ='2025 YosysHQ GmbH' +yosys_ver = "0.49" # select HTML theme html_theme = 'furo-ys'