Fixes version, adds features to changelog
This commit is contained in:
15
CHANGELOG.md
15
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
|
2021-12-16
|
||||||
* app.Version = "0.2.11"
|
* app.Version = "0.2.11"
|
||||||
* include license file in plugin
|
* include license file in plugin
|
||||||
|
2
Makefile
2
Makefile
@ -13,7 +13,7 @@ GOARCH?="amd64"
|
|||||||
ARG=-v -tags netgo -ldflags '-w -extldflags "-static"'
|
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=`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_UID=$(shell id -u i2psvc)
|
||||||
I2P_GID=$(shell id -g i2psvc)
|
I2P_GID=$(shell id -g i2psvc)
|
||||||
|
2
main.go
2
main.go
@ -19,7 +19,7 @@ func main() {
|
|||||||
|
|
||||||
app := cli.NewApp()
|
app := cli.NewApp()
|
||||||
app.Name = "reseed-tools"
|
app.Name = "reseed-tools"
|
||||||
app.Version = "0.2.9"
|
app.Version = "0.2.32"
|
||||||
app.Usage = "I2P tools and reseed server"
|
app.Usage = "I2P tools and reseed server"
|
||||||
auth := &cli.Author{
|
auth := &cli.Author{
|
||||||
Name: "eyedeekay",
|
Name: "eyedeekay",
|
||||||
|
Reference in New Issue
Block a user