Skip to content

Commit 1d7c75b

Browse files
committedFeb 9, 2024
Bump to gophercloud v2 beta.1
1 parent 80377ec commit 1d7c75b

File tree

87 files changed

+234
-263
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+234
-263
lines changed
 

‎.github/workflows/unit.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
fail-fast: false
88
matrix:
99
go-version:
10-
- "1.15"
10+
- "1.21"
1111

1212
env:
1313
GO111MODULE: "on"
@@ -26,8 +26,7 @@ jobs:
2626
cd "$(mktemp -d)"
2727
go mod init unit_tests
2828
29-
# Pin to a version that Go v1.15 supports
30-
go get golang.org/x/tools/cmd/goimports@v0.8.0
29+
go get golang.org/x/tools/cmd/goimports@latest
3130
3231
- name: Run go vet
3332
run: |

‎acceptance/clients/clients.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ import (
77
"net/http"
88
"os"
99

10-
"github.com/gophercloud/gophercloud"
11-
"github.com/gophercloud/gophercloud/openstack"
12-
"github.com/gophercloud/utils/client"
13-
"github.com/gophercloud/utils/env"
14-
"github.com/gophercloud/utils/gnocchi"
15-
"github.com/gophercloud/utils/openstack/clientconfig"
10+
"github.com/gophercloud/gophercloud/v2/openstack"
11+
"github.com/gophercloud/gophercloud/v2"
12+
"github.com/gophercloud/utils/v2/client"
13+
"github.com/gophercloud/utils/v2/env"
14+
"github.com/gophercloud/utils/v2/gnocchi"
15+
"github.com/gophercloud/utils/v2/openstack/clientconfig"
1616
)
1717

1818
// NewGnocchiV1Client returns a *ServiceClient for making calls

0 commit comments

Comments
 (0)
Please sign in to comment.