Skip to content

Commit 3aa5141

Browse files
committed
build: go, dependency upgrades
1 parent a33ed69 commit 3aa5141

File tree

11 files changed

+67
-56
lines changed

11 files changed

+67
-56
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ updates:
33
- package-ecosystem: "gomod"
44
directory: "/"
55
schedule:
6-
interval: "daily"
7-
time: "16:00"
6+
interval: "monthly"
87
reviewers:
98
- "dhth"
109
labels:
@@ -15,8 +14,7 @@ updates:
1514
- package-ecosystem: "github-actions"
1615
directory: "/"
1716
schedule:
18-
interval: "daily"
19-
time: "16:00"
17+
interval: "monthly"
2018
reviewers:
2119
- "dhth"
2220
labels:

.github/workflows/back-compat-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
contents: read
1212

1313
env:
14-
GO_VERSION: '1.23.5'
14+
GO_VERSION: '1.24.0'
1515

1616
jobs:
1717
check-back-compat:

.github/workflows/back-compat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88
contents: read
99

1010
env:
11-
GO_VERSION: '1.23.5'
11+
GO_VERSION: '1.24.0'
1212

1313
jobs:
1414
check-back-compat:

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313
contents: read
1414

1515
env:
16-
GO_VERSION: '1.23.5'
16+
GO_VERSION: '1.24.0'
1717

1818
jobs:
1919
build:

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313
contents: read
1414

1515
env:
16-
GO_VERSION: '1.23.5'
16+
GO_VERSION: '1.24.0'
1717

1818
jobs:
1919
lint:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
id-token: write
1010

1111
env:
12-
GO_VERSION: '1.23.5'
12+
GO_VERSION: '1.24.0'
1313

1414
jobs:
1515
release:
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install Cosign
3030
uses: sigstore/cosign-installer@v3
3131
with:
32-
cosign-release: 'v2.4.1'
32+
cosign-release: 'v2.4.3'
3333
- name: Release Binaries
3434
uses: goreleaser/goreleaser-action@v6
3535
with:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- ".github/workflows/test.yml"
1111

1212
env:
13-
GO_VERSION: '1.23.5'
13+
GO_VERSION: '1.24.0'
1414

1515
jobs:
1616
test:

.github/workflows/vulncheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
contents: read
1313

1414
env:
15-
GO_VERSION: '1.23.5'
15+
GO_VERSION: '1.24.0'
1616

1717
jobs:
1818
vulncheck:

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [Unreleased]
9+
10+
### Added
11+
12+
- Support for custom themes
13+
14+
## [v0.4.1] - Feb 03, 2025
15+
16+
### Changed
17+
18+
- Minor wording changes in error messages
19+
820
## [v0.4.0] - Jan 19, 2025
921

1022
### Added
@@ -42,7 +54,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4254
--interactive/-i flag)
4355
- Adds the "gen" subcommand to allow new users of "hours" to generate dummy data
4456

45-
[unreleased]: https://github.com/dhth/hours/compare/v0.4.0...HEAD
57+
[unreleased]: https://github.com/dhth/hours/compare/v0.4.1...HEAD
58+
[v0.4.1]: https://github.com/dhth/hours/compare/v0.4.0...v0.4.1
4659
[v0.4.0]: https://github.com/dhth/hours/compare/v0.3.0...v0.4.0
4760
[v0.3.0]: https://github.com/dhth/hours/compare/v0.2.0...v0.3.0
4861
[v0.2.0]: https://github.com/dhth/hours/compare/v0.1.0...v0.2.0

go.mod

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
module github.com/dhth/hours
22

3-
go 1.23.5
3+
go 1.24.0
44

55
require (
66
github.com/charmbracelet/bubbles v0.20.0
7-
github.com/charmbracelet/bubbletea v1.2.4
7+
github.com/charmbracelet/bubbletea v1.3.3
88
github.com/charmbracelet/lipgloss v1.0.0
99
github.com/dustin/go-humanize v1.0.1
1010
github.com/olekukonko/tablewriter v0.0.5
11-
github.com/spf13/cobra v1.8.1
11+
github.com/spf13/cobra v1.9.1
1212
github.com/stretchr/testify v1.10.0
13-
modernc.org/sqlite v1.34.5
13+
modernc.org/sqlite v1.35.0
1414
)
1515

1616
require (
1717
github.com/atotto/clipboard v0.1.4 // indirect
1818
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
19-
github.com/charmbracelet/x/ansi v0.7.0 // indirect
19+
github.com/charmbracelet/x/ansi v0.8.0 // indirect
2020
github.com/charmbracelet/x/term v0.2.1 // indirect
2121
github.com/davecgh/go-spew v1.1.1 // indirect
2222
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
@@ -28,19 +28,19 @@ require (
2828
github.com/mattn/go-runewidth v0.0.16 // indirect
2929
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
3030
github.com/muesli/cancelreader v0.2.2 // indirect
31-
github.com/muesli/termenv v0.15.2 // indirect
31+
github.com/muesli/termenv v0.16.0 // indirect
3232
github.com/ncruces/go-strftime v0.1.9 // indirect
3333
github.com/pmezard/go-difflib v1.0.0 // indirect
3434
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
3535
github.com/rivo/uniseg v0.4.7 // indirect
3636
github.com/sahilm/fuzzy v0.1.1 // indirect
37-
github.com/spf13/pflag v1.0.5 // indirect
38-
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect
39-
golang.org/x/sync v0.10.0 // indirect
40-
golang.org/x/sys v0.29.0 // indirect
41-
golang.org/x/text v0.21.0 // indirect
37+
github.com/spf13/pflag v1.0.6 // indirect
38+
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa // indirect
39+
golang.org/x/sync v0.11.0 // indirect
40+
golang.org/x/sys v0.30.0 // indirect
41+
golang.org/x/text v0.22.0 // indirect
4242
gopkg.in/yaml.v3 v3.0.1 // indirect
43-
modernc.org/libc v1.61.9 // indirect
43+
modernc.org/libc v1.61.13 // indirect
4444
modernc.org/mathutil v1.7.1 // indirect
4545
modernc.org/memory v1.8.2 // indirect
4646
)

0 commit comments

Comments
 (0)