Compare commits

...

1 Commits

Author SHA1 Message Date
bfb1bb3433 chore: update version to v2.0.0 in main.go
To make `go install` happy :-|
2025-11-26 16:39:10 +01:00
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() {