diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c9f11f2..30bebd75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.0] - 2023-10-10 +### Changed +- Updated tools version in example + +### Added +- Added new init system using init and entrypoint from device tree +- Added a sha512sums.txt to release artifacts +- Added support for forwarding application exit status + ## [0.12.0] - 2023-08-14 ### Changed - Cache build in CI @@ -99,7 +108,8 @@ 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/machine-emulator-tools/compare/v0.12.0...HEAD +[Unreleased]: https://github.com/cartesi/machine-emulator-tools/compare/v0.13.0...HEAD +[0.13.0]: https://github.com/cartesi/machine-emulator-tools/releases/tag/v0.13.0 [0.12.0]: https://github.com/cartesi/machine-emulator-tools/releases/tag/v0.12.0 [0.11.0]: https://github.com/cartesi/machine-emulator-tools/releases/tag/v0.11.0 [0.10.0]: https://github.com/cartesi/machine-emulator-tools/releases/tag/v0.10.0 diff --git a/Makefile b/Makefile index 61465640..7f2a74aa 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ # MAJOR := 0 -MINOR := 12 +MINOR := 13 PATCH := 0 LABEL := VERSION := $(MAJOR).$(MINOR).$(PATCH)$(LABEL) diff --git a/example/README.md b/example/README.md index 9793f505..0a0c1f3f 100644 --- a/example/README.md +++ b/example/README.md @@ -1,6 +1,6 @@ # Example: Cartesi root filesystem with machine emulator tools -The following example demonstrates how to create a bootable root filesystem for the Cartesi Machine based on a Ubuntu RISC-V 64 docker image. It requires the machine-emulator-tools v0.11.0. +The following example demonstrates how to create a bootable root filesystem for the Cartesi Machine based on a Ubuntu RISC-V 64 docker image. It requires the machine-emulator-tools v0.13.0. ### Requirements @@ -13,7 +13,7 @@ The following example demonstrates how to create a bootable root filesystem for ### Building ```sh -cp ../machine-emulator-tools-v0.11.0.tar.gz . +cp ../machine-emulator-tools-v0.13.0.tar.gz . ./build ubuntu-22.04.dockerfile ``` diff --git a/example/build b/example/build index 343699c0..edd2b8bd 100755 --- a/example/build +++ b/example/build @@ -9,7 +9,7 @@ fi NAME=${1%.*} DOCKERFILE="$NAME.dockerfile" -TOOLS=machine-emulator-tools-v0.12.0.tar.gz +TOOLS=machine-emulator-tools-v0.13.0.tar.gz if [ ! -f "$DOCKERFILE" ]; then echo "dockerfile \"$DOCKERFILE\" not found"