ibm_vpc 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.bumpversion.cfg +1 -2
- data/.gitignore +3 -0
- data/.travis.yml +1 -0
- data/CHANGELOG.md +10 -0
- data/Makefile +10 -0
- data/README.md +1 -1
- data/Rakefile +10 -0
- data/lib/ibm_vpc/version.rb +1 -1
- data/lib/ibm_vpc/vpc_v1.rb +642 -204
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9663cd8b9292ddd503ab1fe82b10d240ba38078cee8ba23a562096202df6aa9c
|
4
|
+
data.tar.gz: c2996f634ca4c956f9f28d7dae0bbfdd0370222e4841986f279a9e26c5249803
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3e142a3bbc83c54cc36d569d3fdbf1c170d6166c530dc28ccf8b26f53a92d6b70b8d9cebbfe53c49b188d7b459bb0df398bd976de6959b3a427a06ccc472adc
|
7
|
+
data.tar.gz: df89bd7bad195f2e865fa0added321d0885332db8d862e6682cb5e280db8db89f938f6e28f2ecd1b65ed0e6bc04dd1883ebd358dac10ac92465226b6ee2db299
|
data/.bumpversion.cfg
CHANGED
@@ -1,9 +1,8 @@
|
|
1
1
|
[bumpversion]
|
2
|
-
current_version = 0.
|
2
|
+
current_version = 0.6.0
|
3
3
|
commit = True
|
4
4
|
message = Update version {current_version} -> {new_version}
|
5
5
|
|
6
6
|
[bumpversion:file:lib/ibm_vpc/version.rb]
|
7
7
|
search = VERSION = "{current_version}"
|
8
8
|
replace = VERSION = "{new_version}"
|
9
|
-
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
# [0.6.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.5.0...0.6.0) (2023-03-14)
|
2
|
+
|
3
|
+
|
4
|
+
### Features
|
5
|
+
|
6
|
+
* **release:** Update SDK to support VPC API generated on 2022-07-20 ([1dd3a8a](https://github.com/IBM/vpc-ruby-sdk/commit/1dd3a8ad8cf83e85013aec86bc574e77bcd2ee55))
|
7
|
+
* **release:** Update SDK to support VPC API generated on 2022-07-20 ([b8b154e](https://github.com/IBM/vpc-ruby-sdk/commit/b8b154e031bf15a79452da9fb9fe8381c7d0c08a))
|
8
|
+
* **release:** Update SDK to support VPC API generated on 2022-07-20 ([7e2c594](https://github.com/IBM/vpc-ruby-sdk/commit/7e2c5949783931c5dbcec71ba3141dfcf6d0e9f3))
|
9
|
+
* **release:** Update SDK to support VPC API generated on 2022-07-20 ([#22](https://github.com/IBM/vpc-ruby-sdk/issues/22)) ([6fc405d](https://github.com/IBM/vpc-ruby-sdk/commit/6fc405d3d82892df5e61b1cb597c7aaa2edb08b7))
|
10
|
+
|
1
11
|
# [0.5.0](https://github.com/IBM/vpc-ruby-sdk/compare/0.4.0...0.5.0) (2022-08-28)
|
2
12
|
|
3
13
|
|
data/Makefile
ADDED
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: "2022-
|
94
|
+
version: "2022-09-13" # Will default to the latest version if not specified
|
95
95
|
authenticator: authenticator
|
96
96
|
)
|
97
97
|
|
data/Rakefile
CHANGED
@@ -28,6 +28,16 @@ namespace :test do
|
|
28
28
|
t.warning = true
|
29
29
|
t.deps = %i[dotenv rubocop]
|
30
30
|
end
|
31
|
+
|
32
|
+
Rake::TestTask.new do |t|
|
33
|
+
t.name = "examples"
|
34
|
+
t.description = "Run example tests (put credentials in a .env file)"
|
35
|
+
t.libs << "test"
|
36
|
+
t.test_files = FileList["test/examples/*.rb"]
|
37
|
+
t.verbose = true
|
38
|
+
t.warning = true
|
39
|
+
t.deps = %i[dotenv rubocop]
|
40
|
+
end
|
31
41
|
end
|
32
42
|
|
33
43
|
desc "Run unit & integration tests"
|
data/lib/ibm_vpc/version.rb
CHANGED