From 15681930fabeac896a9d173e9f481f7144a00cb4 Mon Sep 17 00:00:00 2001 From: idk Date: Sat, 28 Jan 2023 00:44:09 +0000 Subject: [PATCH] Fixes version, adds features to changelog --- CHANGELOG.md | 15 +++++++++++++++ Makefile | 2 +- main.go | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 078f4b9..c46ab77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +2023-01-27 + * app.Version = "0.2.32" + * This changelog has been inadequately updated. + * At this time, there have been features added. + * All flags but signer will be filled in with default values or left unused. + * signer may be configured with an environment variable. + * A fake homepage is served when a user-agent does not match eepget. + * Static resources have been embedded in the binary to support the homepage. + * ACME support has been added. + * Support for operating an `.onion` service has been added. + * Support for operating an in-network(`.b32.i2p`) interface to the reseed has been added. + * Reseed servers can monitor eachother on a rate-limited basis. + * Support has been added for running as an I2P plugin. + * Limited support has been added for Debian packages. + 2021-12-16 * app.Version = "0.2.11" * include license file in plugin diff --git a/Makefile b/Makefile index 4b16e71..2937392 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ GOARCH?="amd64" ARG=-v -tags netgo -ldflags '-w -extldflags "-static"' #MIN_GO_VERSION=`ls /usr/lib/go-1.14 2>/dev/null >/dev/null && echo 1.14` -MIN_GO_VERSION?=1.15 +MIN_GO_VERSION?=1.16 I2P_UID=$(shell id -u i2psvc) I2P_GID=$(shell id -g i2psvc) diff --git a/main.go b/main.go index d7808cb..f80a70d 100644 --- a/main.go +++ b/main.go @@ -19,7 +19,7 @@ func main() { app := cli.NewApp() app.Name = "reseed-tools" - app.Version = "0.2.9" + app.Version = "0.2.32" app.Usage = "I2P tools and reseed server" auth := &cli.Author{ Name: "eyedeekay",