Skip to content

Commit

Permalink
feat: Bump emulator to v0.15.3
Browse files Browse the repository at this point in the history
- bump server-manager version
- Update CHANGELOG.md
  • Loading branch information
vfusco committed Jan 25, 2024
1 parent 5147710 commit e2698ac
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 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.2
EMULATOR_TAG: 0.15.3
ROM_VERSION: v0.17.0
KERNEL_VERSION: v0.17.0
LINUX_VERSION: 5.15.63-ctsi-2-v0.17.0
Expand Down
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.8.3] - 2024-01-25
### Changed
- Updated server-manager version to v0.8.3
- Updated machine-emulator base image to v0.15.3

### Fixed
- Fixed build on MacOS with Homebrew
- Fixed protoc compile errors on Ubuntu

## [0.8.2] - 2023-08-21
### Changed
- Updated server-manager version to v0.8.2
Expand Down Expand Up @@ -35,7 +44,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.2...HEAD
[Unreleased]: https://github.com/cartesi/server-manager/compare/v0.8.3...HEAD
[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
[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
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.15.2
ARG EMULATOR_TAG=0.15.3
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.2
EMULATOR_TAG ?= 0.15.3
EMULATOR_REPOSITORY ?= cartesi/machine-emulator

# Mac OS X specific settings
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Cartesi Server-Manager

The Cartesi Server-Manager is a microservice that serves as an interface between the Remote Cartesi Machine (RCM) and other components of the Cartesi Rollup node. It is designed to simplify the communication between the RCM and the rest of the Cartesi node. It's written in C/C++ with POSIX dependencies restricted to the terminal and process facilites. Currently, it is distributed as a docker image.
The Cartesi Server-Manager is a microservice that serves as an interface between the Remote Cartesi Machine (RCM) and other components of the Cartesi Rollup node. It is designed to simplify the communication between the RCM and the rest of the Cartesi node. It's written in C/C++ with POSIX dependencies restricted to the terminal and process facilities. Currently, it is distributed as a docker image.

## Getting Started

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 = 2;
static constexpr uint32_t manager_version_patch = 3;
static constexpr const char *manager_version_pre_release = "";
static constexpr const char *manager_version_build = "";

Expand Down

0 comments on commit e2698ac

Please sign in to comment.