diff --git a/CHANGELOG.md b/CHANGELOG.md index 953bd3f7..83c17445 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ 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.11.0] - 2023-04-19 ### Changed - Fixed rollups-http-server when it receives an inspect with 0 bytes - Updated linux-sources to v5.15.63-ctsi-2 @@ -89,7 +91,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.10.0...HEAD +[Unreleased]: https://github.com/cartesi/machine-emulator-tools/compare/v0.11.0...HEAD +[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 [0.9.0]: https://github.com/cartesi/machine-emulator-tools/releases/tag/v0.9.0 [0.8.0]: https://github.com/cartesi/machine-emulator-tools/releases/tag/v0.8.0 diff --git a/Makefile b/Makefile index 491a8058..6aff86cf 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -MACHINE_EMULATOR_TOOLS_VERSION ?= v0.10.0 +MACHINE_EMULATOR_TOOLS_VERSION ?= v0.11.0 MACHINE_EMULATOR_TOOLS_TAR_GZ := machine-emulator-tools-$(MACHINE_EMULATOR_TOOLS_VERSION).tar.gz LINUX_SOURCES_VERSION ?= 5.15.63-ctsi-2 diff --git a/example/README.md b/example/README.md index 346dab59..9793f505 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.10.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.11.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.10.0.tar.gz . +cp ../machine-emulator-tools-v0.11.0.tar.gz . ./build ubuntu-22.04.dockerfile ``` diff --git a/example/build b/example/build index 2b4cf318..883e73ac 100755 --- a/example/build +++ b/example/build @@ -9,7 +9,7 @@ fi NAME=${1%.*} DOCKERFILE="$NAME.dockerfile" -TOOLS=machine-emulator-tools-v0.10.0.tar.gz +TOOLS=machine-emulator-tools-v0.11.0.tar.gz if [ ! -f "$DOCKERFILE" ]; then echo "dockerfile \"$DOCKERFILE\" not found"