Skip to content

Commit

Permalink
bump middleware version to 0.1.4
Browse files Browse the repository at this point in the history
This update includes upgrading `komodod` (Komodo Core Daemon)
to the latest version, `0.9.0`. For more information about
the daemon update, please visit: [Komodo Drogon Update](https://komodoplatform.com/en/blog/komodo-drogon-update/).
  • Loading branch information
DeckerSU committed Aug 26, 2024
1 parent 86b1a51 commit 4896e29
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ MAINTAINER [email protected]

SHELL ["/bin/bash", "-c"]

# Latest release komodo 0.8.2-beta1
ARG KOMODO_COMMITTISH=v0.8.2-beta1-sign
# Latest release komodo v0.9.0-beta1
ARG KOMODO_COMMITTISH=v0.9.0-beta1
ARG IS_RELEASE=false
# DeckerSU <[email protected]> https://keys.openpgp.org/vks/v1/by-fingerprint/FD9A772C7300F4C894D1A819FE50480862E6451C
ARG KOMODOD_MAINTAINER_KEYS="FD9A772C7300F4C894D1A819FE50480862E6451C"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ GZIP_CMD=$(shell command -v pigz || echo gzip)
NOFILE=100000
# DeckerSU <[email protected]> https://keys.openpgp.org/vks/v1/by-fingerprint/FD9A772C7300F4C894D1A819FE50480862E6451C
KOMODOD_MAINTAINER_KEYS?=FD9A772C7300F4C894D1A819FE50480862E6451C
KOMODO_COMMITTISH?=v0.8.2-beta1-sign
KOMODO_COMMITTISH?=v0.9.0-beta1
DOCKER_IMAGE_NAME?=deckersu/rosetta-komodo

deps:
Expand Down
4 changes: 2 additions & 2 deletions services/network_service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ import (
)

var (
middlewareVersion = "0.1.3"
middlewareVersion = "0.1.4"
defaultNetworkOptions = &types.NetworkOptionsResponse{
Version: &types.Version{
RosettaVersion: types.RosettaAPIVersion,
NodeVersion: "0.8.2",
NodeVersion: "0.9.0",
MiddlewareVersion: &middlewareVersion,
},
Allow: &types.Allow{
Expand Down
4 changes: 2 additions & 2 deletions services/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
const (
// NodeVersion is the version of
// komodod core we are using.
NodeVersion = "0.8.2"
NodeVersion = "0.9.0"

// HistoricalBalanceLookup indicates
// that historical balance lookup is supported.
Expand All @@ -46,7 +46,7 @@ var (
// variable instead of a constant because
// we typically need the pointer of this
// value.
MiddlewareVersion = "0.1.3"
MiddlewareVersion = "0.1.4"
)

// Client is used by the servicers to get Peer information
Expand Down

0 comments on commit 4896e29

Please sign in to comment.