Fixes version, adds features to changelog

This commit is contained in:
idk
2023-01-28 00:44:09 +00:00
parent b34b866cec
commit 15681930fa
3 changed files with 17 additions and 2 deletions

View File

@ -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

View File

@ -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)

View File

@ -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",