Skip to content

Commit

Permalink
feat(spec): updated the sdk as per the api spec released on 2024-09-17 (
Browse files Browse the repository at this point in the history
#100)

* feat(spec): updated the sdk as per the api spec released on 2024-09-17

Signed-off-by: Ujjwal Kumar <[email protected]>

* build: updated travis.yml

Signed-off-by: Ujjwal Kumar <[email protected]>

* fix: update date

Signed-off-by: Ujjwal Kumar <[email protected]>

---------

Signed-off-by: Ujjwal Kumar <[email protected]>
  • Loading branch information
uibm authored Sep 17, 2024
1 parent d0ad3b5 commit d797ca7
Show file tree
Hide file tree
Showing 6 changed files with 1,119 additions and 2,216 deletions.
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ go:
- 1.21.x
- 1.22.x

env:
global:
- GO111MODULE=on

before_install:
- sudo apt-get update
Expand All @@ -21,7 +18,7 @@ before_install:
- npm install

install:
- curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $(go env GOPATH)/bin v1.56.2
- curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $(go env GOPATH)/bin v1.61.0

script:
- make travis-ci
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/IBM/vpc-go-sdk)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)

# IBM Cloud VPC Go SDK Version 0.57.0
# IBM Cloud VPC Go SDK Version 0.58.0
Go client library to interact with the various [IBM Cloud VPC Services APIs](https://cloud.ibm.com/apidocs?category=vpc).

**Note:** Given the current version of all VPC SDKs across supported languages and the current VPC API specification, we retracted the vpc-go-sdk version 1.x to version v0.6.0, which had the same features as v1.0.1.
Consider using v0.57.0 from now on. Refrain from using commands like `go get -u ..` and `go get ..@latest` on go 1.14 and lower as you will not get the latest release.
Consider using v0.58.0 from now on. Refrain from using commands like `go get -u ..` and `go get ..@latest` on go 1.14 and lower as you will not get the latest release.

This SDK uses [Semantic Versioning](https://semver.org), and as such there may be backward-incompatible changes for any new `0.y.z` version.
## Table of Contents
Expand Down Expand Up @@ -64,7 +64,7 @@ Use this command to download and install the VPC Go SDK service to allow your Go
use it:

```
go get github.com/IBM/vpc-go-sdk@v0.57.0
go get github.com/IBM/vpc-go-sdk@v0.58.0
```


Expand All @@ -90,7 +90,7 @@ to your `Gopkg.toml` file. Here is an example:
```
[[constraint]]
name = "github.com/IBM/vpc-go-sdk/"
version = "0.57.0"
version = "0.58.0"
```

Then run `dep ensure`.
Expand Down
2 changes: 1 addition & 1 deletion common/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package common

// Version of the SDK
const Version = "0.57.0"
const Version = "0.58.0"
Loading

0 comments on commit d797ca7

Please sign in to comment.