ibm_vpc 0.3.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 60719caf6879e4d58a619e4eb953399bd500ced3cbabd91e8383ff34cde39d59
4
- data.tar.gz: d32e7df59bdc82170c92ac3bf7e3ffcc7c6f983330afd9b8558fc43c20a94339
3
+ metadata.gz: c0b5d558ceb736357ad6f161113cc593d0235fda1a7109d8443744cd0eec6236
4
+ data.tar.gz: dc639cfda9c25a7e92f6f2ec5ab2c68aba06c2f3bc850ab1a0ce404bcb380122
5
5
  SHA512:
6
- metadata.gz: 1f72d779b99145bba4cf97acbb5cb5caa6858caac0e21705cba57055cc7697d00fbe1b8b2900200bd923e08e69df473a3c96d6604f1bcea396f5df7d96bef1ec
7
- data.tar.gz: 3084882603d56ebdfbdff437e061b232d7104e702d2d417bda0d7efad8eeab164dc14522f04dc84e3dcfacea29714734b5433b6df039f5009c70ed2f85484fa6
6
+ metadata.gz: 8fd49f028dc225a7746a5287db57ba035fd822e262ef278152c8207911a14ebfafffbef7cd768db50e97bbb3f8a1dd4e5692ef2c10baea84cec5b223c799881b
7
+ data.tar.gz: 73b4e8aaaa93ade30b960640db798667361edee287bf89ac94bb2c89e2d43214c87ee5297b5d7c97648077b96f9e8df83c20ff5e302abc30c3fc31ace06e49cf
data/.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 0.3.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,25 @@
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
+
9
+ # [0.4.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.3.1...0.4.0) (2021-12-10)
10
+
11
+
12
+ ### Features
13
+
14
+ * **release:** Updated vpc service to use API version 2021-12-07 ([#16](https://github.com/IBM/vpc-ruby-sdk/issues/16)) ([f562a4c](https://github.com/IBM/vpc-ruby-sdk/commit/f562a4cb6423ea3ab0e934975cac63acafb690bf))
15
+
16
+ ## [0.3.1](https://github.com/IBM/vpc-ruby-sdk/compare/0.3.0...0.3.1) (2021-12-09)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * **Release:** Update SDK to support VPC API Version 2021-12-07 ([8bbf2e5](https://github.com/IBM/vpc-ruby-sdk/commit/8bbf2e5c2c118084b223f652fde01ca6b8ea7242))
22
+
1
23
  # [0.3.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.2.0...0.3.0) (2021-09-14)
2
24
 
3
25
 
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
 
data/ibm_vpc.gemspec CHANGED
@@ -34,7 +34,6 @@ Gem::Specification.new do |spec|
34
34
  spec.add_runtime_dependency "jwt", "~> 2.2.1"
35
35
 
36
36
  spec.add_development_dependency "bundler", "~> 2.1"
37
- spec.add_development_dependency "codecov", "~> 0.1"
38
37
  spec.add_development_dependency "dotenv", "~> 2.4"
39
38
  spec.add_development_dependency "minitest"
40
39
  spec.add_development_dependency "minitest-hooks"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module IbmVpc
4
- VERSION = "0.3.0"
4
+ VERSION = "0.5.0"
5
5
  end