From e2443dcd27611de1a616e53fcd23265e0e75c6f7 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Wed, 3 Jul 2024 18:17:27 +0200 Subject: [PATCH] Version 1.1.3 --- Makefile | 2 +- debian/changelog | 11 +++++++++++ docker/Dockerfile | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5c629de..4fce728 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ GO=go GOLDFLAGS=-v -s -w -X main.VersionString=$(PROGRAM_VERSION) GOBUILDFLAGS=-v -p $(shell nproc) -ldflags="$(GOLDFLAGS)" PROGRAM=thalos-server -PROGRAM_VERSION=1.1.2 +PROGRAM_VERSION=1.1.3 PREFIX=/usr/local BINDIR=$(PREFIX)/bin CFGDIR=$(PREFIX)/etc/thalos diff --git a/debian/changelog b/debian/changelog index e1230f3..595f2ca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +thalos (1.1.3) bionic focal jammy; urgency=medium + + * Updated antelope-go library to v0.1.2 that fixes a bug in abi binary + decoder, it expects some fields to be strings while they are "names" + (strings encoded into a int64) + * Fix a bug with "set_abi" struct had the wrong order of fields in ShipProcessor.updateAbiFromAction() + * Fix a bug in ShipProcessor.updateAbiFromAction() that assumed the abi + was in hex format when in fact it is binary. + + -- Henrik Hautakoski Wed, 03 Jul 2024 18:05:33 +0200 + thalos (1.1.2) bionic focal jammy; urgency=medium * API: Fix a bug regarding json timestamp being encoded/decoded with wrong diff --git a/docker/Dockerfile b/docker/Dockerfile index 5c5fd4d..a4e7fde 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:latest LABEL maintainer="Henrik Hautakoski " -ARG VERSION=1.1.2 +ARG VERSION=1.1.3 WORKDIR /thalos ADD --chmod=755 https://github.com/eosswedenorg/thalos/releases/download/v$VERSION/thalos-server-${VERSION}-linux-amd64-musl thalos-server ENTRYPOINT [ "./thalos-server" ]