ibm_vpc 0.8.0 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 17d905c81e562ed8b22c4733b66750efec696410efdefc9d610e5860c730e81f
4
- data.tar.gz: b1bcea65b424b50e89b7b11d9b61ca314d5141019e11d7cfbb5e1b203b63d3c8
3
+ metadata.gz: 8cb3ed1f0836aa77adae565fd4cdd3d9a51d00172fd0e8987ff606459039d276
4
+ data.tar.gz: 473477e94aa11ea542ea268f9927c774cbb5387bd452ef99e0ce6c135f76e00e
5
5
  SHA512:
6
- metadata.gz: 23b90c2af73f4b98337571d2d040fcf6a265abdc3676f7e233fe174cfaa4fe43964fa467e84b1c38532720a1486e3d25f361946f8343fe5eceffd310ae0061c3
7
- data.tar.gz: fd3514a3eaccb1c0b5fba18c81181252e0b700ccaf5e922807153043c4eb3fb645ff513a9ac36bf03846e89313ff22794524aec710860da2b79209d1780b9bd5
6
+ metadata.gz: 18ddc7834140647379aee47b05808dd74f40ba49f2e87c7eea9e31dcbc98c2611a151dc5b1beb6be30aa3181382d26272eb506740fc4d61f47c82a25f6e5aa33
7
+ data.tar.gz: 8a40f28991f9ddfce6b12fb201723b31c6f3979807ac8c3e0c67edf3f7f7035dcce55995e7faedf107f1c2c4c14749282ee653c1b6939428ed25b942b422315b
data/.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 0.8.0
2
+ current_version = 0.10.0
3
3
  commit = True
4
4
  message = Update version {current_version} -> {new_version}
5
5
 
data/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # [0.10.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.9.0...0.10.0) (2025-07-16)
2
+
3
+
4
+ ### Features
5
+
6
+ * **release:** Update SDK to support VPC API version 2025-07-15 ([#36](https://github.com/IBM/vpc-ruby-sdk/issues/36)) ([413c3ad](https://github.com/IBM/vpc-ruby-sdk/commit/413c3ad3a55715ced2ca4d7738b38a1a83adceab))
7
+
8
+ # [0.9.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.8.0...0.9.0) (2025-05-27)
9
+
10
+
11
+ ### Features
12
+
13
+ * **release:** Update SDK to support VPC API version 2025-05-13 ([6402260](https://github.com/IBM/vpc-ruby-sdk/commit/6402260070a47a22c99e598e130506e59180dfda))
14
+
1
15
  # [0.8.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.7.0...0.8.0) (2025-01-31)
2
16
 
3
17
 
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
- [![Build Status](https://travis.ibm.com/ibmcloud/vpc-ruby-sdk.svg?token=swhipuowmWLkVNjPbrfs&branch=master)](https://travis.ibm.com/ibmcloud/vpc-ruby-sdk)
1
+ [![Build](https://img.shields.io/github/actions/workflow/status/IBM/vpc-ruby-sdk/ci.yml?branch=master&label=Build)](https://github.com/IBM/vpc-ruby-sdk/actions/workflows/ci.yml)
2
2
  [![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)
3
3
  [![Gem Version](https://badge.fury.io/rb/ibm_vpc.svg)](https://badge.fury.io/rb/ibm_vpc)
4
+
4
5
  # IBM Cloud VPC Ruby SDK
5
6
 
6
7
  Ruby client library to interact with various [IBM Cloud VPC APIs](https://cloud.ibm.com/apidocs?category=compute).
data/Rakefile CHANGED
@@ -48,7 +48,7 @@ end
48
48
 
49
49
  desc "Run tests and generate a code coverage report"
50
50
  task :coverage do
51
- ENV["COVERAGE"] = "true" if ENV["TRAVIS_RUBY_VERSION"] == "2.5.1" || ENV["CI"].nil?
51
+ ENV["COVERAGE"] = "true" if ENV["GITHUB_ACTIONS"] || ENV["CI"].nil?
52
52
  Rake::Task["test"].execute
53
53
  end
54
54
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module IbmVpc
4
- VERSION = "0.8.0"
4
+ VERSION = "0.10.0"
5
5
  end