chore: update version to v2.0.0 in main.go

To make `go install` happy :-|
This commit is contained in:
2025-11-26 16:34:04 +01:00
parent 676ef83e50
commit bfb1bb3433
2 changed files with 3 additions and 3 deletions

2
go.mod
View File

@@ -1,4 +1,4 @@
module git.donadeo.net/pdonadeo/todotxt2remind
module git.donadeo.net/pdonadeo/todotxt2remind/v2
go 1.24.1

View File

@@ -6,7 +6,7 @@ import (
"io"
"os"
"git.donadeo.net/pdonadeo/todotxt2remind/internal/parser"
"git.donadeo.net/pdonadeo/todotxt2remind/v2/internal/parser"
"github.com/spf13/cobra"
)
@@ -14,7 +14,7 @@ var (
inputFile string
outputFile string
debug bool
version = "v2"
version = "v2.0.0"
)
func main() {