Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: specify Go versions with 1.N.P syntax #154

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/v3/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module deps.dev/api/v3

go 1.23
go 1.23.4

require (
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1
Expand Down
2 changes: 1 addition & 1 deletion api/v3alpha/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module deps.dev/api/v3alpha

go 1.23
go 1.23.4

require (
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1
Expand Down
2 changes: 1 addition & 1 deletion examples/go/artifact_query/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/google/deps.dev/examples/go/artifact_query

go 1.23
go 1.23.4
2 changes: 1 addition & 1 deletion examples/go/dependencies_dot/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/google/deps.dev/examples/go/dependencies_dot

go 1.23
go 1.23.4
2 changes: 1 addition & 1 deletion examples/go/maven_parse_resolve/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/deps.dev/examples/go/maven_parse_resolve

go 1.23
go 1.23.4

require (
deps.dev/api/v3 v3.0.0-20240311054650-e1e6a3d70fb7
Expand Down
2 changes: 1 addition & 1 deletion examples/go/package_lock_licenses/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/deps.dev/examples/go/package_lock_licenses

go 1.23
go 1.23.4

require (
deps.dev/api/v3alpha v0.0.0-20240701033337-efe6530670b9
Expand Down
2 changes: 1 addition & 1 deletion examples/go/package_lock_licenses_batch/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/google/deps.dev/examples/go/package_lock_licenses_batch

go 1.23
go 1.23.4
2 changes: 1 addition & 1 deletion examples/go/resolve/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/deps.dev/examples/go/resolve

go 1.23
go 1.23.4

replace (
deps.dev/util/maven => ../../../util/maven
Expand Down
2 changes: 1 addition & 1 deletion util/maven/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module deps.dev/util/maven

go 1.23
go 1.23.4

replace deps.dev/util/semver => ../semver

Expand Down
2 changes: 1 addition & 1 deletion util/resolve/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module deps.dev/util/resolve

go 1.23
go 1.23.4

replace (
deps.dev/util/maven => ../maven
Expand Down
2 changes: 1 addition & 1 deletion util/semver/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module deps.dev/util/semver

go 1.23
go 1.23.4
Loading