Skip to content

Commit

Permalink
chore!: Bump version to 0.13.0
Browse files Browse the repository at this point in the history
Also update CHANGELOG.md
  • Loading branch information
vfusco committed Oct 11, 2023
1 parent 09fb3f4 commit 132cfe4
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#

MAJOR := 0
MINOR := 12
MINOR := 13
PATCH := 0
LABEL :=
VERSION := $(MAJOR).$(MINOR).$(PATCH)$(LABEL)
Expand Down
4 changes: 2 additions & 2 deletions example/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion example/build
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 132cfe4

Please sign in to comment.