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

Release 0.9.1 #21

Merged
merged 2 commits into from
Mar 29, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build/Test/Release
on: [push]
env:
EMULATOR_REPOSITORY: cartesi/machine-emulator
EMULATOR_TAG: 0.16.0
EMULATOR_TAG: 0.16.1
KERNEL_VERSION: v0.19.1
LINUX_VERSION: 6.5.9-ctsi-1-v0.19.1
TOOLS_VERSION: v0.14.0
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.1] - 2024-03-28
### Changed
- Updated machine-emulator base image to v0.16.1

## [0.9.0] - 2024-02-09
### Changed
- Updated machine-emulator base image to v0.16.0
Expand Down Expand Up @@ -56,7 +60,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The creation of test machines was extracted from the test-server-manager to a lua script
- The license changed to Apache license 2.0

[Unreleased]: https://github.com/cartesi/server-manager/compare/v0.9.0...HEAD
[Unreleased]: https://github.com/cartesi/server-manager/compare/v0.9.1...HEAD
[0.9.1]: https://github.com/cartesi/server-manager/releases/tag/v0.9.1
[0.9.0]: https://github.com/cartesi/server-manager/releases/tag/v0.9.0
[0.8.3]: https://github.com/cartesi/server-manager/releases/tag/v0.8.3
[0.8.2]: https://github.com/cartesi/server-manager/releases/tag/v0.8.2
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG EMULATOR_REPOSITORY=cartesi/machine-emulator
ARG EMULATOR_TAG=0.16.0
ARG EMULATOR_TAG=0.16.1
ARG RELEASE=yes

FROM --platform=$TARGETPLATFORM ${EMULATOR_REPOSITORY}:${EMULATOR_TAG} as linux-env
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ HEALTHCHECK_PROTO := third-party/health.proto

# Docker image settings
TAG ?= devel
EMULATOR_TAG ?= 0.16.0
EMULATOR_TAG ?= 0.16.1
EMULATOR_REPOSITORY ?= cartesi/machine-emulator

# Mac OS X specific settings
Expand Down
2 changes: 1 addition & 1 deletion src/server-manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ constexpr const uint64_t ROLLUP_INSPECT_STATE = 1;

static constexpr uint32_t manager_version_major = 0;
static constexpr uint32_t manager_version_minor = 9;
static constexpr uint32_t manager_version_patch = 0;
static constexpr uint32_t manager_version_patch = 1;
static constexpr const char *manager_version_pre_release = "";
static constexpr const char *manager_version_build = "";

Expand Down
Loading