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

Bump version to 0.13.0 #25

Merged
merged 1 commit into from
Oct 11, 2023
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
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