Skip to content

Commit 2a5f8f3

Browse files
authored
chore(release): bump module versions (#144)
- client: v0.1.0-alpha013 - config: v0.1.0-alpha013 - container: v0.1.0-alpha014 - context: v0.1.0-alpha013 - image: v0.1.0-alpha014 - legacyadapters: v0.1.0-alpha005 - network: v0.1.0-alpha013 - volume: v0.1.0-alpha005
1 parent 9dd9fde commit 2a5f8f3

15 files changed

Lines changed: 26 additions & 26 deletions

File tree

client/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ replace (
1010
require (
1111
github.com/caarlos0/env/v11 v11.3.1
1212
github.com/containerd/errdefs v1.0.0
13-
github.com/docker/go-sdk/context v0.1.0-alpha012
13+
github.com/docker/go-sdk/context v0.1.0-alpha013
1414
github.com/moby/moby/api v1.52.0
1515
github.com/moby/moby/client v0.1.0
1616
github.com/stretchr/testify v1.10.0
@@ -22,7 +22,7 @@ require (
2222
github.com/davecgh/go-spew v1.1.1 // indirect
2323
github.com/distribution/reference v0.6.0 // indirect
2424
github.com/docker/go-connections v0.6.0 // indirect
25-
github.com/docker/go-sdk/config v0.1.0-alpha012 // indirect
25+
github.com/docker/go-sdk/config v0.1.0-alpha013 // indirect
2626
github.com/docker/go-units v0.5.0 // indirect
2727
github.com/felixge/httpsnoop v1.0.4 // indirect
2828
github.com/go-logr/logr v1.4.3 // indirect

client/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package client
22

33
const (
4-
version = "0.1.0-alpha012"
4+
version = "0.1.0-alpha013"
55
)
66

77
// Version returns the version of the client package.

config/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package config
22

33
const (
4-
version = "0.1.0-alpha012"
4+
version = "0.1.0-alpha013"
55
)
66

77
// Version returns the version of the config package.

container/go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ require (
1515
github.com/containerd/errdefs v1.0.0
1616
github.com/containerd/platforms v0.2.1
1717
github.com/docker/go-connections v0.6.0
18-
github.com/docker/go-sdk/client v0.1.0-alpha012
19-
github.com/docker/go-sdk/config v0.1.0-alpha012
20-
github.com/docker/go-sdk/image v0.1.0-alpha013
21-
github.com/docker/go-sdk/network v0.1.0-alpha012
18+
github.com/docker/go-sdk/client v0.1.0-alpha013
19+
github.com/docker/go-sdk/config v0.1.0-alpha013
20+
github.com/docker/go-sdk/image v0.1.0-alpha014
21+
github.com/docker/go-sdk/network v0.1.0-alpha013
2222
github.com/moby/moby/api v1.52.0
2323
github.com/moby/moby/client v0.1.0
2424
github.com/stretchr/testify v1.11.1
@@ -34,7 +34,7 @@ require (
3434
github.com/containerd/log v0.1.0 // indirect
3535
github.com/davecgh/go-spew v1.1.1 // indirect
3636
github.com/distribution/reference v0.6.0 // indirect
37-
github.com/docker/go-sdk/context v0.1.0-alpha012 // indirect
37+
github.com/docker/go-sdk/context v0.1.0-alpha013 // indirect
3838
github.com/docker/go-units v0.5.0 // indirect
3939
github.com/felixge/httpsnoop v1.0.4 // indirect
4040
github.com/go-logr/logr v1.4.3 // indirect

container/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package container
33
import "github.com/docker/go-sdk/client"
44

55
const (
6-
version = "0.1.0-alpha013"
6+
version = "0.1.0-alpha014"
77
moduleLabel = client.LabelBase + ".container"
88
)
99

context/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24.0
55
replace github.com/docker/go-sdk/config => ../config
66

77
require (
8-
github.com/docker/go-sdk/config v0.1.0-alpha012
8+
github.com/docker/go-sdk/config v0.1.0-alpha013
99
github.com/opencontainers/go-digest v1.0.0
1010
github.com/stretchr/testify v1.10.0
1111
)

context/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package context
22

33
const (
4-
version = "0.1.0-alpha012"
4+
version = "0.1.0-alpha013"
55
)
66

77
// Version returns the version of the context package.

image/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ replace (
1111
require (
1212
github.com/cenkalti/backoff/v4 v4.2.1
1313
github.com/containerd/errdefs v1.0.0
14-
github.com/docker/go-sdk/client v0.1.0-alpha012
15-
github.com/docker/go-sdk/config v0.1.0-alpha012
14+
github.com/docker/go-sdk/client v0.1.0-alpha013
15+
github.com/docker/go-sdk/config v0.1.0-alpha013
1616
github.com/moby/go-archive v0.1.0
1717
github.com/moby/moby/api v1.52.0
1818
github.com/moby/moby/client v0.1.0
@@ -31,7 +31,7 @@ require (
3131
github.com/davecgh/go-spew v1.1.1 // indirect
3232
github.com/distribution/reference v0.6.0 // indirect
3333
github.com/docker/go-connections v0.6.0 // indirect
34-
github.com/docker/go-sdk/context v0.1.0-alpha012 // indirect
34+
github.com/docker/go-sdk/context v0.1.0-alpha013 // indirect
3535
github.com/docker/go-units v0.5.0 // indirect
3636
github.com/felixge/httpsnoop v1.0.4 // indirect
3737
github.com/go-logr/logr v1.4.3 // indirect

image/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package image
33
import "github.com/docker/go-sdk/client"
44

55
const (
6-
version = "0.1.0-alpha013"
6+
version = "0.1.0-alpha014"
77
moduleLabel = client.LabelBase + ".image"
88
)
99

legacyadapters/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replace github.com/docker/go-sdk/config => ../config
66

77
require (
88
github.com/docker/cli v28.3.2+incompatible
9-
github.com/docker/go-sdk/config v0.1.0-alpha012
9+
github.com/docker/go-sdk/config v0.1.0-alpha013
1010
github.com/moby/moby/api v1.52.0
1111
github.com/stretchr/testify v1.10.0
1212
)

0 commit comments

Comments
 (0)