ibm_vpc 0.4.0 → 0.5.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: a724a81c6a284ee111fedd2a3371a75c0d8a8871561bbefde12c50353318dbe5
4
- data.tar.gz: bf3672c8274f1f93d7cd040a2311676c72800bd4aa853d678d57460ec1d5fcfb
3
+ metadata.gz: c0b5d558ceb736357ad6f161113cc593d0235fda1a7109d8443744cd0eec6236
4
+ data.tar.gz: dc639cfda9c25a7e92f6f2ec5ab2c68aba06c2f3bc850ab1a0ce404bcb380122
5
5
  SHA512:
6
- metadata.gz: d9e5cae6b83294683b0e522df5340160661b982366349553a6d616547874e1ddbe7925ce50968e32364c1fa4a9269b2e4f2bf68fe000fff7a790d5a13748cac3
7
- data.tar.gz: a632d8d8ba7254bec5f9ee6487067eacf51243dc4ff6bc24cc666bd090a65fefa5517bae8b8aa9e5df246d4cde68c52e8c2368540f125946cfb4230d798dd7ad
6
+ metadata.gz: 8fd49f028dc225a7746a5287db57ba035fd822e262ef278152c8207911a14ebfafffbef7cd768db50e97bbb3f8a1dd4e5692ef2c10baea84cec5b223c799881b
7
+ data.tar.gz: 73b4e8aaaa93ade30b960640db798667361edee287bf89ac94bb2c89e2d43214c87ee5297b5d7c97648077b96f9e8df83c20ff5e302abc30c3fc31ace06e49cf
data/.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 0.4.0
2
+ current_version = 0.5.0
3
3
  commit = True
4
4
  message = Update version {current_version} -> {new_version}
5
5
 
data/.travis.yml CHANGED
@@ -16,7 +16,7 @@ before_install:
16
16
  - git fetch --tags
17
17
  - sudo apt-get update
18
18
  - sudo apt-get install python
19
- - nvm install node
19
+ - nvm install --lts
20
20
  - nvm use node
21
21
  - gem install bundler:2.1.4
22
22
 
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ # [0.5.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.4.0...0.5.0) (2022-08-28)
2
+
3
+
4
+ ### Features
5
+
6
+ * **release:** Update SDK to support VPC API generated on 2022-07-12 ([14e7aaf](https://github.com/IBM/vpc-ruby-sdk/commit/14e7aaf434eef6a99591d01b6b14948f580e9998))
7
+ * **release:** Update SDK to support VPC API generated on 2022-07-12 ([#18](https://github.com/IBM/vpc-ruby-sdk/issues/18)) ([840d89b](https://github.com/IBM/vpc-ruby-sdk/commit/840d89ba4901725a0050c1fd605fb8242c1e87e2))
8
+
1
9
  # [0.4.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.3.1...0.4.0) (2021-12-10)
2
10
 
3
11
 
data/README.md CHANGED
@@ -91,7 +91,7 @@ Setting up and using the API client is simple, just pass in your authenticator o
91
91
 
92
92
  # Pass the authenticator into the VpcV1 service
93
93
  vpc_v1 = IbmVpc::VpcV1.new(
94
- version: "2021-08-03" # Will default to the latest version if not specified
94
+ version: "2022-03-29" # Will default to the latest version if not specified
95
95
  authenticator: authenticator
96
96
  )
97
97
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module IbmVpc
4
- VERSION = "0.4.0"
4
+ VERSION = "0.5.0"
5
5
  end