Skip to content

Commit 88703f1

Browse files
fix: update to v5 in module path
1 parent d068ccb commit 88703f1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+216
-926
lines changed

.goreleaser.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ builds:
1515
post:
1616
- upx "{{ .Path }}"
1717
ldflags:
18-
- -s -w -X 'github.com/achannarasappa/ticker/v4/cmd.Version={{.Version}}'
18+
- -s -w -X 'github.com/achannarasappa/ticker/v5/cmd.Version={{.Version}}'
1919
- id: build-linux
2020
main: ./main.go
2121
env:
@@ -30,15 +30,15 @@ builds:
3030
post:
3131
- upx "{{ .Path }}"
3232
ldflags:
33-
- -s -w -X 'github.com/achannarasappa/ticker/v4/cmd.Version={{.Version}}'
33+
- -s -w -X 'github.com/achannarasappa/ticker/v5/cmd.Version={{.Version}}'
3434
- id: build-mac
3535
main: ./main.go
3636
env:
3737
- CGO_ENABLED=0
3838
goos:
3939
- darwin
4040
ldflags:
41-
- -s -w -X 'github.com/achannarasappa/ticker/v4/cmd.Version={{.Version}}'
41+
- -s -w -X 'github.com/achannarasappa/ticker/v5/cmd.Version={{.Version}}'
4242
- id: build-windows-64
4343
main: ./main.go
4444
env:
@@ -48,7 +48,7 @@ builds:
4848
goos:
4949
- windows
5050
ldflags:
51-
- -s -w -X 'github.com/achannarasappa/ticker/v4/cmd.Version={{.Version}}'
51+
- -s -w -X 'github.com/achannarasappa/ticker/v5/cmd.Version={{.Version}}'
5252
- id: build-windows-32
5353
main: ./main.go
5454
env:
@@ -58,7 +58,7 @@ builds:
5858
goos:
5959
- windows
6060
ldflags:
61-
- -s -w -X 'github.com/achannarasappa/ticker/v4/cmd.Version={{.Version}}'
61+
- -s -w -X 'github.com/achannarasappa/ticker/v5/cmd.Version={{.Version}}'
6262
archives:
6363
- id: release-winget
6464
format: zip

cmd/root.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import (
66

77
"github.com/spf13/cobra"
88

9-
"github.com/achannarasappa/ticker/v4/internal/cli"
10-
c "github.com/achannarasappa/ticker/v4/internal/common"
11-
"github.com/achannarasappa/ticker/v4/internal/print"
12-
"github.com/achannarasappa/ticker/v4/internal/ui"
9+
"github.com/achannarasappa/ticker/v5/internal/cli"
10+
c "github.com/achannarasappa/ticker/v5/internal/common"
11+
"github.com/achannarasappa/ticker/v5/internal/print"
12+
"github.com/achannarasappa/ticker/v5/internal/ui"
1313
)
1414

1515
//nolint:gochecknoglobals

go.mod

Lines changed: 30 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,62 @@
1-
module github.com/achannarasappa/ticker/v4
1+
module github.com/achannarasappa/ticker/v5
22

3-
go 1.23.5
4-
5-
toolchain go1.24rc2
3+
go 1.24.3
64

75
require (
86
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d
97
github.com/achannarasappa/term-grid v0.2.4
10-
github.com/adrg/xdg v0.4.0
11-
github.com/charmbracelet/bubbles v0.10.3
12-
github.com/charmbracelet/bubbletea v1.3.3
8+
github.com/adrg/xdg v0.5.3
9+
github.com/charmbracelet/bubbles v0.21.0
10+
github.com/charmbracelet/bubbletea v1.3.5
11+
github.com/charmbracelet/lipgloss v1.1.0
1312
github.com/gorilla/websocket v1.5.3
1413
github.com/lucasb-eyer/go-colorful v1.2.0
1514
github.com/mitchellh/go-homedir v1.1.0
1615
github.com/muesli/reflow v0.3.0
17-
github.com/muesli/termenv v0.15.2
16+
github.com/muesli/termenv v0.16.0
1817
github.com/onsi/ginkgo/v2 v2.22.1
1918
github.com/onsi/gomega v1.36.2
20-
github.com/spf13/afero v1.8.1
21-
github.com/spf13/cobra v1.3.0
22-
github.com/spf13/viper v1.10.1
19+
github.com/spf13/afero v1.14.0
20+
github.com/spf13/cobra v1.9.1
21+
github.com/spf13/viper v1.20.1
22+
golang.org/x/exp v0.0.0-20250506013437-ce4c2cf36ca6
2323
gopkg.in/yaml.v2 v2.4.0
2424
)
2525

2626
require (
2727
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
28-
github.com/charmbracelet/lipgloss v1.0.0 // indirect
29-
github.com/charmbracelet/x/ansi v0.8.0 // indirect
28+
github.com/charmbracelet/colorprofile v0.3.1 // indirect
29+
github.com/charmbracelet/x/ansi v0.9.2 // indirect
30+
github.com/charmbracelet/x/cellbuf v0.0.13 // indirect
3031
github.com/charmbracelet/x/term v0.2.1 // indirect
3132
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
32-
github.com/fsnotify/fsnotify v1.5.1 // indirect
33+
github.com/fsnotify/fsnotify v1.9.0 // indirect
3334
github.com/go-logr/logr v1.4.2 // indirect
3435
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
36+
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
3537
github.com/google/go-cmp v0.6.0 // indirect
3638
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
37-
github.com/hashicorp/hcl v1.0.0 // indirect
38-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
39-
github.com/magiconair/properties v1.8.5 // indirect
39+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4040
github.com/mattn/go-isatty v0.0.20 // indirect
4141
github.com/mattn/go-localereader v0.0.1 // indirect
4242
github.com/mattn/go-runewidth v0.0.16 // indirect
43-
github.com/mitchellh/mapstructure v1.4.3 // indirect
4443
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
4544
github.com/muesli/cancelreader v0.2.2 // indirect
4645
github.com/onsi/ginkgo v1.16.5 // indirect
47-
github.com/pelletier/go-toml v1.9.4 // indirect
46+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
4847
github.com/rivo/uniseg v0.4.7 // indirect
49-
github.com/spf13/cast v1.4.1 // indirect
50-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
51-
github.com/spf13/pflag v1.0.5 // indirect
52-
github.com/subosito/gotenv v1.2.0 // indirect
53-
golang.org/x/net v0.33.0 // indirect
54-
golang.org/x/sync v0.11.0 // indirect
55-
golang.org/x/sys v0.30.0 // indirect
56-
golang.org/x/text v0.21.0 // indirect
57-
golang.org/x/tools v0.28.0 // indirect
48+
github.com/sagikazarmark/locafero v0.9.0 // indirect
49+
github.com/sourcegraph/conc v0.3.0 // indirect
50+
github.com/spf13/cast v1.8.0 // indirect
51+
github.com/spf13/pflag v1.0.6 // indirect
52+
github.com/subosito/gotenv v1.6.0 // indirect
53+
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
54+
go.uber.org/multierr v1.11.0 // indirect
55+
golang.org/x/net v0.40.0 // indirect
56+
golang.org/x/sync v0.14.0 // indirect
57+
golang.org/x/sys v0.33.0 // indirect
58+
golang.org/x/text v0.25.0 // indirect
59+
golang.org/x/tools v0.33.0 // indirect
5860
google.golang.org/protobuf v1.36.1 // indirect
59-
gopkg.in/ini.v1 v1.66.4 // indirect
6061
gopkg.in/yaml.v3 v3.0.1 // indirect
6162
)

0 commit comments

Comments
 (0)