1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-07-04 12:03:41 +02:00

Version 1.1.0-rc1

This commit is contained in:
Henrik Hautakoski 2024-02-19 14:46:22 +01:00
parent a2a9e106a3
commit 99bb06aef4
2 changed files with 19 additions and 2 deletions

View file

@ -3,7 +3,7 @@ GO=go
GOLDFLAGS=-v -s -w -X main.VersionString=$(PROGRAM_VERSION) GOLDFLAGS=-v -s -w -X main.VersionString=$(PROGRAM_VERSION)
GOBUILDFLAGS=-v -p $(shell nproc) -ldflags="$(GOLDFLAGS)" GOBUILDFLAGS=-v -p $(shell nproc) -ldflags="$(GOLDFLAGS)"
PROGRAM=thalos-server PROGRAM=thalos-server
PROGRAM_VERSION=1.0.0 PROGRAM_VERSION=1.0.0-rc1
PREFIX=/usr/local PREFIX=/usr/local
BINDIR=$(PREFIX)/bin BINDIR=$(PREFIX)/bin
CFGDIR=$(PREFIX)/etc/thalos CFGDIR=$(PREFIX)/etc/thalos

17
debian/changelog vendored
View file

@ -1,3 +1,20 @@
thalos (1.1.0~rc1) bionic focal jammy; urgency=medium
* Adding flags for almost all config values.
* Improved disconnect code for ship client.
- Application now waits for ship to reply with a close message before exiting
the application.
- The application now recognizes an close error and no longer reports is as
an actual error to the log.
* Application only calls "GetInfo" from the antelope API once and only if it actually needs the information.
* CI: update actions/checkout to version 4
* CI: update actions/setup-go to version 5
* golang: update github.com/eosswedenorg-go/antelope-ship-client to v0.2.7
* golang: switched github.com/pborman/getopt for github.com/spf13/cobra
* golang: use github.com/spf13/viper to handle configuration.
-- Henrik Hautakoski <henril.hautakoski@gmail.com> Mon, 19 Feb 2024 14:27:40 +0100
thalos (1.0.0) bionic focal jammy; urgency=medium thalos (1.0.0) bionic focal jammy; urgency=medium
* Improved code documentation. * Improved code documentation.