Skip to content

Commit 6c44589

Browse files
authored
Merge branch 'main' into FBC-3624/get-wallets-by-currency
2 parents 24b6a6f + 3fea218 commit 6c44589

File tree

5 files changed

+32
-9
lines changed

5 files changed

+32
-9
lines changed

.github/workflows/check.yml

+4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v3
2424

25+
- name: Install Bundler 2.2.33
26+
run: |
27+
gem install bundler -v 2.2.33
28+
2529
- name: Which bundler?
2630
run: |
2731
bundle -v

.github/workflows/dependabot.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: bundler
4+
directory: "/"
5+
schedule:
6+
interval: weekly
7+
time: "10:00"
8+
open-pull-requests-limit: 5
9+
groups:
10+
production-dependencies:
11+
dependency-type: "production"
12+
update-types:
13+
- "minor"
14+
- "patch"
15+
development-dependencies:
16+
dependency-type: "development"
17+
update-types:
18+
- "minor"
19+
- "patch"

Gemfile.lock

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
bitgo-client (0.1.7)
4+
bitgo-client (0.1.8)
55
addressable (~> 2.6)
66
typhoeus (~> 1.3)
77

@@ -16,9 +16,9 @@ GEM
1616
crack (0.4.3)
1717
safe_yaml (~> 1.0.0)
1818
diff-lcs (1.3)
19-
ethon (0.12.0)
20-
ffi (>= 1.3.0)
21-
ffi (1.11.1)
19+
ethon (0.16.0)
20+
ffi (>= 1.15.0)
21+
ffi (1.17.1)
2222
hashdiff (0.3.8)
2323
method_source (0.9.2)
2424
parallel (1.12.1)
@@ -60,7 +60,7 @@ GEM
6060
rubocop (>= 0.53.0)
6161
ruby-progressbar (1.9.0)
6262
safe_yaml (1.0.5)
63-
typhoeus (1.3.1)
63+
typhoeus (1.4.1)
6464
ethon (>= 0.9.0)
6565
unicode-display_width (1.3.2)
6666
webmock (3.5.1)
@@ -73,7 +73,7 @@ PLATFORMS
7373

7474
DEPENDENCIES
7575
bitgo-client!
76-
bundler (~> 1.16)
76+
bundler (~> 2.2.33)
7777
byebug (~> 10.0)
7878
pry-byebug (<= 3.6)
7979
rake (~> 12.3.3)
@@ -84,4 +84,4 @@ DEPENDENCIES
8484
webmock (~> 3.5)
8585

8686
BUNDLED WITH
87-
1.17.3
87+
2.2.33

bitgo-client.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
2323
spec.add_dependency "addressable", "~> 2.6"
2424
spec.add_dependency "typhoeus", "~> 1.3"
2525

26-
spec.add_development_dependency "bundler", "~> 1.16"
26+
spec.add_development_dependency "bundler", "~> 2.2.33"
2727
spec.add_development_dependency "byebug", "~> 10.0"
2828
spec.add_development_dependency "pry-byebug", "<= 3.6"
2929
spec.add_development_dependency "rake", "~> 12.3.3"

lib/bitgo_client/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module BitgoClient
4-
VERSION = "0.1.7"
4+
VERSION = "0.1.8"
55
end

0 commit comments

Comments
 (0)