From 2bd027cb87eaa9bf7d17196ec5f69864b35b630f Mon Sep 17 00:00:00 2001 From: Nils Wistoff Date: Tue, 26 Sep 2023 11:40:10 +0200 Subject: [PATCH] Release v1.32.0 Signed-off-by: Nils Wistoff --- CHANGELOG.md | 9 +++++++++ common_cells.core | 4 +++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1423bb5f..b7f53b40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## 1.32.0 - 2023-09-26 +### Added +- Add `stream_join_dynamic`: `stream_join` with a dynamically configurable subset selection. +- Add `multiaddr_decode`: Address map decoder using NAPOT regions and allowing for multiple address inputs. +- Add `addr_decode_dync`: `addr_decode` with support for dynamic online configuration. + +### Changed +- `mem_to_banks`: Change default value for `NumBanks` from `0` to `1` to avoid division by zero. + ## 1.31.1 - 2023-08-09 ### Fixed - `mem_to_banks`: Keep defaut values for localparams diff --git a/common_cells.core b/common_cells.core index 3ba992db..89fd483c 100644 --- a/common_cells.core +++ b/common_cells.core @@ -1,6 +1,6 @@ CAPI=2: -name : pulp-platform.org::common_cells:1.31.1 +name : pulp-platform.org::common_cells:1.32.0 filesets: rtl: @@ -27,6 +27,7 @@ filesets: - src/lfsr.sv - src/lfsr_16bit.sv - src/lfsr_8bit.sv + - src/multiaddr_decode.sv - src/mv_filter.sv - src/onehot_to_bin.sv - src/plru_tree.sv @@ -42,6 +43,7 @@ filesets: - src/stream_fork.sv - src/stream_intf.sv - src/stream_join.sv + - src/stream_join_dynamic.sv - src/stream_mux.sv - src/stream_throttle.sv - src/sub_per_hash.sv