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.49.0
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.50.0
Choose a head ref
  • 3 commits
  • 8 files changed
  • 2 contributors

Commits on Sep 14, 2023

  1. Verified

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

    # [0.50.0](v0.49.0...v0.50.0) (2023-09-14)
    
    ### Features
    
    * **Usage Reports:** add billing snapshot config service to usage reports ([#272](#272)) ([c56989e](c56989e))
    semantic-release-bot committed Sep 14, 2023
    Copy the full SHA
    35d8ec2 View commit details
Showing with 2,796 additions and 203 deletions.
  1. +1 −1 .bumpversion.cfg
  2. +7 −0 CHANGELOG.md
  3. +2 −2 README.md
  4. +1 −1 common/version.go
  5. +1,384 −125 usagereportsv4/usage_reports_v4.go
  6. +139 −0 usagereportsv4/usage_reports_v4_examples_test.go
  7. +120 −0 usagereportsv4/usage_reports_v4_integration_test.go
  8. +1,142 −74 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.49.0
current_version = 0.50.0
commit = True
message = Update version {current_version} -> {new_version} [skip ci]

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [0.50.0](https://github.com/IBM/platform-services-go-sdk/compare/v0.49.0...v0.50.0) (2023-09-14)


### Features

* **Usage Reports:** add billing snapshot config service to usage reports ([#272](https://github.com/IBM/platform-services-go-sdk/issues/272)) ([c56989e](https://github.com/IBM/platform-services-go-sdk/commit/c56989e7a2c375714d85e171495c98780b95b8a1))

# [0.49.0](https://github.com/IBM/platform-services-go-sdk/compare/v0.48.1...v0.49.0) (2023-09-13)


4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -7,7 +7,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.49.0
# IBM Cloud Platform Services Go SDK Version 0.50.0

Go client library to interact with various
[IBM Cloud Platform Service APIs](https://cloud.ibm.com/docs?tab=api-docs&category=platform_services).
@@ -86,7 +86,7 @@ Service Name | Package name
* Go version 1.19 or above.

## Installation
The current version of this SDK: 0.49.0
The current version of this SDK: 0.50.0

### 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.49.0"
const Version = "0.50.0"
Loading