Skip to content

Commit

Permalink
Release v3.0.37
Browse files Browse the repository at this point in the history
  • Loading branch information
dosco committed Sep 6, 2024
1 parent 2e5884c commit afdc3d7
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion auth/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.18
require (
github.com/adjust/gorails v0.0.0-20171013043634-2786ed0c03d3
github.com/bradfitz/gomemcache v0.0.0-20230905024940-24af94b03874
github.com/dosco/graphjin/core/v3 v3.0.36
github.com/dosco/graphjin/core/v3 v3.0.37
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/gomodule/redigo v1.9.2
github.com/gorilla/websocket v1.5.3
Expand Down
8 changes: 4 additions & 4 deletions cmd/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ toolchain go1.23.1
require (
github.com/brianvoe/gofakeit/v6 v6.28.0
github.com/dop251/goja v0.0.0-20240828124009-016eb7256539
github.com/dosco/graphjin/core/v3 v3.0.36
github.com/dosco/graphjin/serv/v3 v3.0.36
github.com/dosco/graphjin/core/v3 v3.0.37
github.com/dosco/graphjin/serv/v3 v3.0.37
github.com/gosimple/slug v1.14.0
github.com/jackc/pgx/v5 v5.6.0
github.com/jvatic/goja-babel v0.0.0-20240829121804-52a2d5a94eb5
Expand Down Expand Up @@ -45,8 +45,8 @@ require (
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
github.com/dimchansky/utfbom v1.1.1 // indirect
github.com/dlclark/regexp2 v1.11.4 // indirect
github.com/dosco/graphjin/auth/v3 v3.0.36 // indirect
github.com/dosco/graphjin/plugin/otel/v3 v3.0.36 // indirect
github.com/dosco/graphjin/auth/v3 v3.0.37 // indirect
github.com/dosco/graphjin/plugin/otel/v3 v3.0.37 // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion conf/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/dosco/graphjin/conf/v3
go 1.18

require (
github.com/dosco/graphjin/core/v3 v3.0.36
github.com/dosco/graphjin/core/v3 v3.0.37
gopkg.in/yaml.v3 v3.0.1
)

Expand Down
2 changes: 1 addition & 1 deletion plugin/otel/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.21
toolchain go1.23.1

require (
github.com/dosco/graphjin/core/v3 v3.0.36
github.com/dosco/graphjin/core/v3 v3.0.37
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.42.0
go.opentelemetry.io/otel v1.29.0
go.opentelemetry.io/otel/trace v1.29.0
Expand Down
4 changes: 3 additions & 1 deletion release.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ func gitCommands(version string) error {
}{
{"git", []string{"add", "."}},
{"git", []string{"commit", "-m", fmt.Sprintf("Release v%s", version)}},
{"git", []string{"push", "origin", "master"}},

{"git", []string{"tag", fmt.Sprintf("auth/v%s", version)}},
{"git", []string{"tag", fmt.Sprintf("cmd/v%s", version)}},
{"git", []string{"tag", fmt.Sprintf("conf/v%s", version)}},
Expand All @@ -71,8 +73,8 @@ func gitCommands(version string) error {
{"git", []string{"tag", fmt.Sprintf("serv/v%s", version)}},
{"git", []string{"tag", fmt.Sprintf("tests/v%s", version)}},
{"git", []string{"tag", fmt.Sprintf("wasm/v%s", version)}},
{"git", []string{"push", "--tags"}},
{"git", []string{"tag", fmt.Sprintf("v%s", version)}},
{"git", []string{"push", "origin", "master"}},
{"git", []string{"push", "--tags"}},
}

Expand Down
6 changes: 3 additions & 3 deletions serv/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ go 1.21
toolchain go1.23.1

require (
github.com/dosco/graphjin/auth/v3 v3.0.36
github.com/dosco/graphjin/core/v3 v3.0.36
github.com/dosco/graphjin/plugin/otel/v3 v3.0.36
github.com/dosco/graphjin/auth/v3 v3.0.37
github.com/dosco/graphjin/core/v3 v3.0.37
github.com/dosco/graphjin/plugin/otel/v3 v3.0.37
github.com/fsnotify/fsnotify v1.7.0
github.com/go-http-utils/headers v0.0.0-20181008091004-fed159eddc2a
github.com/go-pkgz/expirable-cache v1.0.0
Expand Down
4 changes: 2 additions & 2 deletions tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ go 1.21
toolchain go1.23.1

require (
github.com/dosco/graphjin/conf/v3 v3.0.36
github.com/dosco/graphjin/core/v3 v3.0.36
github.com/dosco/graphjin/conf/v3 v3.0.37
github.com/dosco/graphjin/core/v3 v3.0.37
github.com/orlangure/gnomock v0.30.0
github.com/stretchr/testify v1.9.0
golang.org/x/sync v0.8.0
Expand Down
4 changes: 2 additions & 2 deletions wasm/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ module github.com/dosco/graphjin/wasm/v3
go 1.18

require (
github.com/dosco/graphjin/conf/v3 v3.0.36
github.com/dosco/graphjin/core/v3 v3.0.36
github.com/dosco/graphjin/conf/v3 v3.0.37
github.com/dosco/graphjin/core/v3 v3.0.37
)

require (
Expand Down

0 comments on commit afdc3d7

Please sign in to comment.