diff --git a/CHANGELOG.md b/CHANGELOG.md index 195662f..562bad8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,14 @@ 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). -## Unreleased +## 0.2.0 - 2022-11-21 + +### Changed +- Separate config registers from the LLC implementation. Add a top level, `axi_llc_reg_wrap`, + containing a *default* configuration register file. [#5](https://github.com/pulp-platform/axi_llc/pull/5). + This addresses [#2](https://github.com/pulp-platform/axi_llc/issues/2). +- Update AXI dependency from `0.37.0` to `0.39.0-beta.2` fixing [#3](https://github.com/pulp-platform/axi_llc/issues/3). +- Various fixes to ci ## 0.1.0 - 2022-09-01 diff --git a/Makefile b/Makefile index e3b5fcc..b8fb3a2 100644 --- a/Makefile +++ b/Makefile @@ -135,7 +135,7 @@ vcs_clean: .PHONY: pickle pickle_clean doc doc_clean graph graph_clean morty_clean MORTY ?= morty -MORTY_TOP ?= axi_llc_top +MORTY_TOP ?= axi_llc_reg_wrap MORTY_TOP_TB ?= tb_axi_llc PATH_ESCAPED = $(shell pwd | sed 's_/_\\/_g') RELATIVE_PATH_REGEX = 's/$(PATH_ESCAPED)/./' diff --git a/VERSION b/VERSION index 6e8bf73..0ea3a94 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.0 +0.2.0