Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: IBM/platform-services-go-sdk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.19.1
Choose a base ref
...
head repository: IBM/platform-services-go-sdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.19.2
Choose a head ref
  • 4 commits
  • 9 files changed
  • 3 contributors

Commits on Jul 9, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6c01b48 View commit details

Commits on Jul 29, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    64af32f View commit details
  2. Copy the full SHA
    55c2a87 View commit details
  3. chore(release): 0.19.2 release notes [skip ci]

    ## [0.19.2](v0.19.1...v0.19.2) (2021-07-29)
    
    ### Bug Fixes
    
    * **usage reports:** add optional name parameters to struct ([#139](#139)) ([64af32f](64af32f))
    semantic-release-bot committed Jul 29, 2021
    Copy the full SHA
    8d3dfd4 View commit details
Showing with 1,355 additions and 760 deletions.
  1. +1 −1 .bumpversion.cfg
  2. +1 −1 .travis.yml
  3. +7 −0 CHANGELOG.md
  4. +3 −3 README.md
  5. +1 −1 common/version.go
  6. +1 −1 go.mod
  7. +416 −318 usagereportsv4/usage_reports_v4.go
  8. +3 −2 usagereportsv4/usage_reports_v4_suite_test.go
  9. +922 −433 usagereportsv4/usage_reports_v4_test.go
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.19.1
current_version = 0.19.2
commit = True
message = Update version {current_version} -> {new_version} [skip ci]

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ language: go
dist: xenial

go:
- 1.12.x
- 1.14.x

notifications:
email: true
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.19.2](https://github.com/IBM/platform-services-go-sdk/compare/v0.19.1...v0.19.2) (2021-07-29)


### Bug Fixes

* **usage reports:** add optional name parameters to struct ([#139](https://github.com/IBM/platform-services-go-sdk/issues/139)) ([64af32f](https://github.com/IBM/platform-services-go-sdk/commit/64af32f0d1e7696b2a878966b25ce6a2c65e9552))

## [0.19.1](https://github.com/IBM/platform-services-go-sdk/compare/v0.19.0...v0.19.1) (2021-07-09)


6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@
[![CLA assistant](https://cla-assistant.io/readme/badge/IBM/platform-services-go-sdk)](https://cla-assistant.io/IBM/platform-services-go-sdk)


# IBM Cloud Platform Services Go SDK Version 0.19.1
# IBM Cloud Platform Services Go SDK Version 0.19.2

Go client library to interact with various
[IBM Cloud Platform Service APIs](https://cloud.ibm.com/docs?tab=api-docs&category=platform_services).
@@ -75,10 +75,10 @@ Service Name | Package name
* An [IBM Cloud][ibm-cloud-onboarding] account.
* An IAM API key to allow the SDK to access your account. Create one
[here](https://cloud.ibm.com/iam/apikeys).
* Go version 1.12 or above.
* Go version 1.14 or above.

## Installation
The current version of this SDK: 0.19.1
The current version of this SDK: 0.19.2

### Go modules
If your application uses Go modules for dependency management (recommended), just add an import for each service
2 changes: 1 addition & 1 deletion common/version.go
Original file line number Diff line number Diff line change
@@ -17,4 +17,4 @@
package common

// Version of the SDK
const Version = "0.19.1"
const Version = "0.19.2"
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/IBM/platform-services-go-sdk

go 1.12
go 1.14

require (
github.com/IBM/go-sdk-core/v5 v5.5.1
Loading