Skip to content

Commit

Permalink
bump go to 1.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tateexon committed Aug 20, 2024
1 parent 1a2a80d commit 6dde225
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 18 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/go-change-delta
unit-test-coverage.out
.direnv
2 changes: 1 addition & 1 deletion .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ linters-settings:
- name: atomic
issues:
exclude-dirs:
- examples
- .*/nix/store/.*
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
golang 1.22.5
golangci-lint 1.59.1
golang 1.23.0
golangci-lint 1.60.1
typos 1.23.3
shfmt 3.8.0
shellcheck 0.10.0
Expand Down
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# WIP

# go-change-delta

go-change-delta is a tool to detect the blast radius of changes in a Go-based repository. It helps you identify which packages are affected by changes in your codebase, enabling more focused and efficient testing.
Expand Down Expand Up @@ -77,8 +75,3 @@ jobs:
## Contributing
Contributions are welcome! Feel free to open an issue or submit a pull request.
# TODO:
- Setup and add CI
- Add a github action to make using this easier in other CIs
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ require github.com/stretchr/testify v1.9.0
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/text v0.16.0
golang.org/x/text v0.17.0
gopkg.in/yaml.v3 v3.0.1 // indirect
)
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
golang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4=
golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI=
golang.org/x/text v0.17.0 h1:XtiM5bkSOt+ewxlOE/aE/AKEHibwj/6gvWMl9Rsh0Qc=
golang.org/x/text v0.17.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
Expand Down
2 changes: 1 addition & 1 deletion nix/ci-runtests.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ pkgs, scriptDir }:
with pkgs;
let
go = pkgs.go_1_22;
go = pkgs.go_1_23;
in
mkShell {
nativeBuildInputs = [
Expand Down
2 changes: 1 addition & 1 deletion nix/devshell.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ pkgs, scriptDir }:
with pkgs;
let
go = pkgs.go_1_22;
go = pkgs.go_1_23;
in
mkShell {
nativeBuildInputs = [
Expand Down

0 comments on commit 6dde225

Please sign in to comment.