From 92816fa9664797aba4bc75a94f06479b2e4fad5a Mon Sep 17 00:00:00 2001 From: Michael Eischer Date: Mon, 11 Apr 2022 21:06:37 +0200 Subject: [PATCH] init: Enable compression support by default --- internal/restic/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/restic/config.go b/internal/restic/config.go index 6df32e2ef..ae4be0aa3 100644 --- a/internal/restic/config.go +++ b/internal/restic/config.go @@ -23,7 +23,7 @@ const MaxRepoVersion = 2 // StableRepoVersion is the version that is written to the config when a repository // is newly created with Init(). -const StableRepoVersion = 1 +const StableRepoVersion = 2 // JSONUnpackedLoader loads unpacked JSON. type JSONUnpackedLoader interface {