Skip to content

Commit

Permalink
feat: Bump emulator to v0.15.2
Browse files Browse the repository at this point in the history
- bump server-manager version
- Update CHANGELOG.md
  • Loading branch information
vfusco committed Aug 21, 2023
1 parent a9fe89f commit 2f3361e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
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.15.1
EMULATOR_TAG: 0.15.2
ROM_VERSION: v0.17.0
KERNEL_VERSION: v0.17.0
LINUX_VERSION: 5.15.63-ctsi-2-v0.17.0
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.2] - 2023-08-21
### Changed
- Updated server-manager version to v0.8.2
- Updated machine-emulator base image to v0.15.2

## [0.8.1] - 2023-08-17
### Changed
- Updated server-manager version to v0.8.1
Expand All @@ -30,7 +35,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.8.1...HEAD
[Unreleased]: https://github.com/cartesi/server-manager/compare/v0.8.2...HEAD
[0.8.2]: https://github.com/cartesi/server-manager/releases/tag/v0.8.2
[0.8.1]: https://github.com/cartesi/server-manager/releases/tag/v0.8.1
[0.8.0]: https://github.com/cartesi/server-manager/releases/tag/v0.8.0
[0.7.0]: https://github.com/cartesi/server-manager/releases/tag/v0.7.0
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.15.1
ARG EMULATOR_TAG=0.15.2
ARG RELEASE=yes

FROM --platform=$TARGETPLATFORM ${EMULATOR_REPOSITORY}:${EMULATOR_TAG} as dep-builder
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.15.1
EMULATOR_TAG ?= 0.15.2
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 @@ -101,7 +101,7 @@ constexpr const uint64_t ROLLUP_INSPECT_STATE = 1;

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

Expand Down

0 comments on commit 2f3361e

Please sign in to comment.