From 40e2a8b1e406629c1d65f8573d8d2ecb315663db Mon Sep 17 00:00:00 2001 From: Michael Eischer Date: Fri, 20 Jan 2023 22:36:40 +0100 Subject: [PATCH] add changelog and update readme --- README.md | 2 +- changelog/unreleased/pull-208 | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 changelog/unreleased/pull-208 diff --git a/README.md b/README.md index 93eeb04..94c8126 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Rest Server is a high performance HTTP server that implements restic's [REST bac ## Requirements -Rest Server requires Go 1.15 or higher to build. The only tested compiler is the official Go compiler. Building server with `gccgo` may work, but is not supported. +Rest Server requires Go 1.17 or higher to build. The only tested compiler is the official Go compiler. Building server with `gccgo` may work, but is not supported. The required version of restic backup client to use with `rest-server` is [v0.7.1](https://github.com/restic/restic/releases/tag/v0.7.1) or higher. diff --git a/changelog/unreleased/pull-208 b/changelog/unreleased/pull-208 new file mode 100644 index 0000000..49fc05d --- /dev/null +++ b/changelog/unreleased/pull-208 @@ -0,0 +1,7 @@ +Change: Update dependencies and require Go 1.17 or newer + +Most dependencies have been updated. Since some libraries require newer language +features, support for Go 1.15-1.16 has been dropped, which means that rest-server now +requires at least Go 1.17 to build. + +https://github.com/restic/rest-server/pull/208