From 71e0408390c661d1b11491502f2433215bfd73b7 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sun, 26 Aug 2018 10:10:59 +0200 Subject: [PATCH] Add entry to changelog --- changelog/unreleased/pull-1920 | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 changelog/unreleased/pull-1920 diff --git a/changelog/unreleased/pull-1920 b/changelog/unreleased/pull-1920 new file mode 100644 index 000000000..e253d7797 --- /dev/null +++ b/changelog/unreleased/pull-1920 @@ -0,0 +1,8 @@ +Enhancement: Vendor dependencies with Go 1.11 Modules + +Until now, we've used `dep` for managing dependencies, we've now switch to +using Go modules. For users this does not change much, only if you want to +compile restic without downloading anything with Go 1.11, then you need to run: +`go build -mod=vendor build.go` + +https://github.com/restic/restic/pull/1920