binance_client 5.0.0 → 5.1.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/binance_client/client.rb +1 -0
- data/lib/binance_client/requests/ping_request.rb +11 -0
- data/lib/binance_client/responses/ping_response.rb +5 -0
- data/lib/binance_client/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9d5c9aa23792c3ce05d700f255a811031aadc407e54184a415fe08d6810a2e04
|
|
4
|
+
data.tar.gz: 65356315dfc2e010d17ceb6d3e48a1c9f7b420c96acfa1a28beae1f944a68872
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 79ad182390c4a8046fb1e72cf438c6bcd6732270180d6432e3c27cecc4169d3bbc193b7d0ca6d7f75bb5034fe8ed1c815158cde4c725e8f4796757252b98494f
|
|
7
|
+
data.tar.gz: 39a88c90b97074c6af9a7e66e4a5f77e3054e8342f7bfc8f8a46f82c008835fbd9b00cedb5fadf9827561ae65c818f87b28a8f240ba6efebcfb5b0fcc7aad92e
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ 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
|
+
## [5.1.0] - 2022-04-22
|
|
8
|
+
### Added
|
|
9
|
+
- `#ping`
|
|
10
|
+
|
|
7
11
|
## [5.0.0] - 2022-04-06
|
|
8
12
|
### Added
|
|
9
13
|
- `#sub_account_bnb_burn_status`
|
data/Gemfile.lock
CHANGED
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: 5.
|
|
4
|
+
version: 5.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- AJ Villalobos
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-04-
|
|
11
|
+
date: 2022-04-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: api_client_base
|
|
@@ -157,6 +157,7 @@ files:
|
|
|
157
157
|
- lib/binance_client/requests/create_test_order_request.rb
|
|
158
158
|
- lib/binance_client/requests/exchange_info_request.rb
|
|
159
159
|
- lib/binance_client/requests/order_book_depth_request.rb
|
|
160
|
+
- lib/binance_client/requests/ping_request.rb
|
|
160
161
|
- lib/binance_client/requests/sub_account_assets_request.rb
|
|
161
162
|
- lib/binance_client/requests/sub_account_bnb_burn_status_request.rb
|
|
162
163
|
- lib/binance_client/requests/sub_account_create_api_keys_request.rb
|
|
@@ -177,6 +178,7 @@ files:
|
|
|
177
178
|
- lib/binance_client/responses/create_test_order_response.rb
|
|
178
179
|
- lib/binance_client/responses/exchange_info_response.rb
|
|
179
180
|
- lib/binance_client/responses/order_book_depth_response.rb
|
|
181
|
+
- lib/binance_client/responses/ping_response.rb
|
|
180
182
|
- lib/binance_client/responses/sub_account_assets_response.rb
|
|
181
183
|
- lib/binance_client/responses/sub_account_bnb_burn_status_response.rb
|
|
182
184
|
- lib/binance_client/responses/sub_account_create_api_keys_response.rb
|