Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.20.0 #42

Merged
merged 1 commit into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.20.0] - 2024-04-15
### Changed
- Updated Linux Kernel to v6.5.13-ctsi-1
- Updated OpenSBI to v1.3.1-ctsi-2

## [0.19.1] - 2023-12-05
### Fix
Expand Down Expand Up @@ -109,8 +113,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [0.2.0]
- [0.1.0]

[Unreleased]: https://github.com/cartesi/image-kernel/compare/v0.19.1...HEAD
[0.19.1]: https://github.com/cartesi/image-kernel/compare/v0.19.1
[Unreleased]: https://github.com/cartesi/image-kernel/compare/v0.20.0...HEAD
[0.20.0]: https://github.com/cartesi/image-kernel/releases/tag/v0.20.0
[0.19.1]: https://github.com/cartesi/image-kernel/releases/tag/v0.19.1
[0.19.0]: https://github.com/cartesi/image-kernel/releases/tag/v0.19.0
[0.18.0]: https://github.com/cartesi/image-kernel/releases/tag/v0.18.0
[0.17.0]: https://github.com/cartesi/image-kernel/releases/tag/v0.17.0
Expand Down
11 changes: 5 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@
.PHONY: all build download push run pull share copy clean checksum

MAJOR := 0
MINOR := 19
PATCH := 1
MINOR := 20
PATCH := 0
LABEL :=
IMAGE_KERNEL_VERSION?= $(MAJOR).$(MINOR).$(PATCH)$(LABEL)

UNAME:=$(shell uname)

TAG ?= devel
TOOLCHAIN_REPOSITORY ?= cartesi/toolchain
TOOLCHAIN_TAG ?= 0.16.0
TOOLCHAIN_TAG ?= 0.17.0

DEP_DIR := dep

KERNEL_VERSION ?= 6.5.9-ctsi-1
KERNEL_VERSION ?= 6.5.13-ctsi-1
KERNEL_SRCPATH := $(DEP_DIR)/linux-${KERNEL_VERSION}.tar.gz

OPENSBI_VERSION ?= 1.3.1-ctsi-2
Expand Down Expand Up @@ -129,8 +129,7 @@ clean:
@rm -rf ./artifacts

distclean depclean: clean
@rm -f \
$(KERNEL_SRCPATH) $(OPENSBI_SRCPATH)
@rm -f $(KERNEL_SRCPATH) $(OPENSBI_SRCPATH)

checksum: $(KERNEL_SRCPATH) $(OPENSBI_SRCPATH)
shasum -ca 256 shasumfile
Expand Down
2 changes: 1 addition & 1 deletion build.mk
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ run-selftest:

# clone (for non CI environment)
# ------------------------------------------------------------------------------
clone: LINUX_BRANCH ?= linux-6.5.9-ctsi-y
clone: LINUX_BRANCH ?= linux-6.5.13-ctsi-y
clone: OPENSBI_BRANCH ?= opensbi-1.3.1-ctsi-y
clone:
git clone --depth 1 --branch $(LINUX_BRANCH) \
Expand Down
2 changes: 1 addition & 1 deletion shasumfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
bfc4d196b90592a2a6bef83ead9e196da6ab6d5978b48ee5e8ccf02913355bc2 dep/linux-6.5.9-ctsi-1.tar.gz
24f3326aad2aa630c6fb2192305b70963ca67c03b0218cdcd09033cbefc9e52d dep/linux-6.5.13-ctsi-1.tar.gz
35082380131117aa8424d1b81ca9e6e0280baa9bffbcf3f46080a652e4cb4385 dep/opensbi-1.3.1-ctsi-2.tar.gz
Loading