ibm_vpc 0.5.0 → 0.6.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: c0b5d558ceb736357ad6f161113cc593d0235fda1a7109d8443744cd0eec6236
4
- data.tar.gz: dc639cfda9c25a7e92f6f2ec5ab2c68aba06c2f3bc850ab1a0ce404bcb380122
3
+ metadata.gz: 9663cd8b9292ddd503ab1fe82b10d240ba38078cee8ba23a562096202df6aa9c
4
+ data.tar.gz: c2996f634ca4c956f9f28d7dae0bbfdd0370222e4841986f279a9e26c5249803
5
5
  SHA512:
6
- metadata.gz: 8fd49f028dc225a7746a5287db57ba035fd822e262ef278152c8207911a14ebfafffbef7cd768db50e97bbb3f8a1dd4e5692ef2c10baea84cec5b223c799881b
7
- data.tar.gz: 73b4e8aaaa93ade30b960640db798667361edee287bf89ac94bb2c89e2d43214c87ee5297b5d7c97648077b96f9e8df83c20ff5e302abc30c3fc31ace06e49cf
6
+ metadata.gz: a3e142a3bbc83c54cc36d569d3fdbf1c170d6166c530dc28ccf8b26f53a92d6b70b8d9cebbfe53c49b188d7b459bb0df398bd976de6959b3a427a06ccc472adc
7
+ data.tar.gz: df89bd7bad195f2e865fa0added321d0885332db8d862e6682cb5e280db8db89f938f6e28f2ecd1b65ed0e6bc04dd1883ebd358dac10ac92465226b6ee2db299
data/.bumpversion.cfg CHANGED
@@ -1,9 +1,8 @@
1
1
  [bumpversion]
2
- current_version = 0.5.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
@@ -12,3 +12,6 @@
12
12
 
13
13
  # rspec failure tracking
14
14
  .rspec_status
15
+
16
+ *.env
17
+ .env
data/.travis.yml CHANGED
@@ -1,6 +1,7 @@
1
1
  language: ruby
2
2
  cache: bundler
3
3
  sudo: required
4
+ dist: focal
4
5
 
5
6
  rvm:
6
7
  - 2.5.1
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
@@ -0,0 +1,10 @@
1
+ # This makefile is used to make it easier to run the tests.
2
+
3
+ test-unit:
4
+ bundle exec rake test:unit
5
+
6
+ test-example:
7
+ bundle exec rake test:examples
8
+
9
+ test-int:
10
+ bundle exec rake test:integration
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-03-29" # Will default to the latest version if not specified
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"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module IbmVpc
4
- VERSION = "0.5.0"
4
+ VERSION = "0.6.0"
5
5
  end