Skip to content

Commit

Permalink
feat: update machine-emulator to v0.16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vfusco committed Mar 28, 2024
1 parent 319caea commit 22c2d71
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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.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
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

0 comments on commit 22c2d71

Please sign in to comment.