binance_client 3.0.1 → 4.0.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: d0ffbedc335b6922f76dc12d791c2e362e012408ec15d89ccbc9a601277874d2
4
- data.tar.gz: d260ca781537671f0efa3cbefad3543f681b5d8c8616d52ceaa8f411dda02d02
3
+ metadata.gz: f3b7cc28ee5e49a6bd911193495c4fe75c8cb8854567a26aee1e4c4ab644403e
4
+ data.tar.gz: 8b2deb1fb0a89194fb839c4ed21949955c564f2cea8bfaccd35fb18a15619e72
5
5
  SHA512:
6
- metadata.gz: ae418449f912f5acab8efea9cb2369d221ff25477254f973e4dc87e44b54d1a4eb9b4835cb2e926af9b725a3187a974a105d1c815dd704f4b03d78e2eb61871a
7
- data.tar.gz: 81b69e1a4cbb64e0a22459a98909f605421a6fbf9286a94a448868cf951d4004cd468e2a08a2ab2d47843b2e18d774dd1284ac6acb242ded188182799a0629a1
6
+ metadata.gz: ac8076c646803401ee62a4320dc8f45335a0d0b3b7647e9c106816ffc5349853b789a3d83760f254cf4bf8e9c0ab32109e71b29225355a5100692fbf4ace5487
7
+ data.tar.gz: 47bea0043b15597afc809976f0389a8824b984115324fa430b115db2467559d9312c13a5f7d4790bb02ad22f3ffd8ac7fe2e5aaf3996d11a4f34e54d380ffb9b
data/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [4.0.0]
8
+ ### Added
9
+ - Add optional `network` parameter when getting deposit address of a specific network
10
+ - Use keyword arguments when calling `sub_account_deposit_address`
11
+
7
12
  ## [3.0.1]
8
13
  ### Fixed
9
14
  - `Coin#network_list` is initialized properly
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- binance_client (3.0.1)
4
+ binance_client (4.0.0)
5
5
  activesupport
6
6
  api_client_base (~> 1.11)
7
7
  typhoeus
@@ -39,7 +39,7 @@ GEM
39
39
  ffi (>= 1.15.0)
40
40
  factory_bot (6.2.0)
41
41
  activesupport (>= 5.0.0)
42
- ffi (1.15.4)
42
+ ffi (1.15.5)
43
43
  gem_config (0.3.2)
44
44
  hashdiff (1.0.1)
45
45
  i18n (1.8.11)
@@ -102,4 +102,4 @@ DEPENDENCIES
102
102
  webmock
103
103
 
104
104
  BUNDLED WITH
105
- 2.2.28
105
+ 2.2.29
@@ -10,7 +10,7 @@ module BinanceClient
10
10
  api_action :book_ticker
11
11
  api_action :order_book_depth
12
12
  api_action :sub_account_assets, args: [:email]
13
- api_action :sub_account_deposit_address, args: [:email, :coin]
13
+ api_action :sub_account_deposit_address
14
14
  api_action :sub_account_deposit_history
15
15
 
16
16
  attribute :host
@@ -1,3 +1,3 @@
1
1
  module BinanceClient
2
- VERSION = "3.0.1"
2
+ VERSION = "4.0.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: binance_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - AJ Villalobos
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-12-28 00:00:00.000000000 Z
11
+ date: 2022-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: api_client_base
@@ -159,7 +159,7 @@ metadata:
159
159
  homepage_uri: https://github.com/bloom-solutions/binance_client-ruby
160
160
  source_code_uri: https://github.com/bloom-solutions/binance_client-ruby
161
161
  changelog_uri: https://github.com/bloom-solutions/binance_client-ruby/CHANGELOG.md
162
- post_install_message:
162
+ post_install_message:
163
163
  rdoc_options: []
164
164
  require_paths:
165
165
  - lib
@@ -175,7 +175,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
175
175
  version: '0'
176
176
  requirements: []
177
177
  rubygems_version: 3.1.6
178
- signing_key:
178
+ signing_key:
179
179
  specification_version: 4
180
180
  summary: Ruby wrapper for Binance API
181
181
  test_files: []