From 16b8b8cda0ec8d008aaca0f71be12b4b2403f0e2 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Tue, 9 Jun 2026 18:49:09 +0200 Subject: [PATCH] Set development version for 0.19.0 --- VERSION | 2 +- internal/global/global.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 1cf0537c3..7120f981c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.19.0 +0.19.0-dev diff --git a/internal/global/global.go b/internal/global/global.go index 20b9fca52..cef010dbd 100644 --- a/internal/global/global.go +++ b/internal/global/global.go @@ -35,7 +35,7 @@ import ( // to a missing backend storage location or config file var ErrNoRepository = errors.New("repository does not exist") -const Version = "0.19.0" +var version = "0.19.0-dev (compiled manually)" // TimeFormat is the format used for all timestamps printed by restic. const TimeFormat = "2006-01-02 15:04:05"