From e2086340862a3f249a9ed3179c7d5c8924b5ab6e Mon Sep 17 00:00:00 2001 From: Marcelo Politzer <251334+mpolitzer@users.noreply.github.com> Date: Wed, 3 Jul 2024 10:26:55 -0300 Subject: [PATCH 1/2] fix: CI release --- .github/workflows/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 05fa545..e566f67 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -108,7 +108,7 @@ jobs: run: | sha512sum ${{ env.TOOLS_DEB }} > ${{ env.TOOLS_DEB }}.sha512 sha512sum ${{ env.TOOLS_ROOTFS }} > ${{ env.TOOLS_ROOTFS }}.sha512 - for f in libcmt/deb/*; sha512sum $f > libcmt/$f.sha512; done + for f in libcmt/deb/*; do sha512sum $f > $f.sha512; done - uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/v') @@ -120,7 +120,6 @@ jobs: ${{ env.TOOLS_ROOTFS }} ${{ env.TOOLS_ROOTFS }}.sha512 libcmt/deb/* - libcmt/deb/*.sha512 test: runs-on: ubuntu-latest-8-cores From 2d13d7586cfb690afda7626414fa992849c057b3 Mon Sep 17 00:00:00 2001 From: Marcelo Politzer <251334+mpolitzer@users.noreply.github.com> Date: Wed, 3 Jul 2024 11:26:09 -0300 Subject: [PATCH 2/2] chore: update version --- .gitignore | 2 ++ CHANGELOG.md | 8 +++++++- Makefile | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7f5453b..ec1aa91 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,8 @@ machine-emulator-tools-*.tar.gz machine-emulator-tools-*.deb rootfs.* libcmt-*.* +package.json +*.bin # Prerequisites *.d diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e9607b..573d58d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,13 @@ 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.16.0] - 2024-07-26 ### Changed - Updated xgenext2fs to v1.5.6 +- Updated migrated from output unification v1 to v2 +- Fixed inconsistencies in the http server api +- Updated CI actions versions ## [0.15.0] - 2024-04-19 ### Added @@ -165,7 +170,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.15.0...HEAD +[Unreleased]: https://github.com/cartesi/machine-emulator-tools/compare/v0.16.0...HEAD +[0.16.0]: https://github.com/cartesi/machine-emulator-tools/releases/tag/v0.16.0 [0.15.0]: https://github.com/cartesi/machine-emulator-tools/releases/tag/v0.15.0 [0.14.1]: https://github.com/cartesi/machine-emulator-tools/releases/tag/v0.14.1 [0.14.0]: https://github.com/cartesi/machine-emulator-tools/releases/tag/v0.14.0 diff --git a/Makefile b/Makefile index 6bbfd3e..1cc50cb 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ # MAJOR := 0 -MINOR := 15 +MINOR := 16 PATCH := 0 LABEL := VERSION := $(MAJOR).$(MINOR).$(PATCH)$(LABEL)