From a2f8c3dc7c4ff45468fac70941c4f9c10122087f Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Wed, 19 Jun 2024 21:51:14 +0200 Subject: [PATCH] v1.1.2-rc3 --- Makefile | 2 +- debian/changelog | 7 +++++++ docker/Dockerfile | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 438f932..8af9320 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-rc2 +PROGRAM_VERSION=1.1.2-rc3 PREFIX=/usr/local BINDIR=$(PREFIX)/bin CFGDIR=$(PREFIX)/etc/thalos diff --git a/debian/changelog b/debian/changelog index fe40add..ffcabbb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +thalos (1.1.2~rc3) bionic focal jammy; urgency=medium + + * Fix a bug in isVariant() where v.Elem() was called on non interface/pointer + * Minor cleanups in tools + + -- Henrik Hautakoski Wed, 19 Jun 2024 21:50:15 +0200 + thalos (1.1.2~rc2) bionic focal jammy; urgency=medium * fix a bug where TableDeltaRow.Data was not set diff --git a/docker/Dockerfile b/docker/Dockerfile index d00fcb9..bc11854 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:latest LABEL maintainer="Henrik Hautakoski " -ARG VERSION=1.1.2-rc2 +ARG VERSION=1.1.2-rc3 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" ]