Skip to content

Commit

Permalink
Merge pull request #20 from binance/rc-1.5.1
Browse files Browse the repository at this point in the history
Release v1.5.1
  • Loading branch information
alplabin authored Jun 18, 2024
2 parents 4471871 + 5a9be06 commit 1591716
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 23 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.5.1 - 2024-06-18

### Changed
- Updated dependencies and resolve github security issue

## 1.5.0 - 2024-04-10

### Added
Expand Down
44 changes: 23 additions & 21 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
binance-connector-ruby (1.5.0)
binance-connector-ruby (1.5.1)
faraday (~> 1.8)
websocket-eventmachine-client (~> 1.3)

Expand All @@ -19,10 +19,9 @@ GEM
adamantium (~> 0.2)
equalizer (~> 0.0.11)
ast (2.4.2)
bigdecimal (3.1.7)
bigdecimal (3.1.8)
binding_of_caller (1.0.1)
debug_inspector (>= 1.2.0)
coderay (1.1.3)
concord (0.1.6)
adamantium (~> 0.2.0)
equalizer (~> 0.0.9)
Expand Down Expand Up @@ -71,47 +70,49 @@ GEM
equalizer (~> 0.0.9)
ice_nine (~> 0.11.1)
procto (~> 0.0.2)
multipart-post (2.4.0)
parallel (1.24.0)
parser (3.3.0.5)
multipart-post (2.4.1)
parallel (1.25.1)
parser (3.3.3.0)
ast (~> 2.4.1)
racc
proc_to_ast (0.1.0)
coderay
proc_to_ast (0.2.0)
parser
rouge
unparser
procto (0.0.3)
public_suffix (5.0.5)
racc (1.7.3)
public_suffix (5.1.0)
racc (1.8.0)
rainbow (3.1.1)
rake (13.2.1)
regexp_parser (2.9.0)
rexml (3.2.6)
regexp_parser (2.9.2)
rexml (3.3.0)
strscan
rouge (4.3.0)
rspec (3.13.0)
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
rspec-mocks (~> 3.13.0)
rspec-core (3.13.0)
rspec-support (~> 3.13.0)
rspec-expectations (3.13.0)
rspec-expectations (3.13.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-mocks (3.13.0)
rspec-mocks (3.13.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-parameterized (1.0.0)
rspec-parameterized (1.0.2)
rspec-parameterized-core (< 2)
rspec-parameterized-table_syntax (< 2)
rspec-parameterized-core (1.0.0)
rspec-parameterized-core (1.0.1)
parser
proc_to_ast
proc_to_ast (>= 0.2.0)
rspec (>= 2.13, < 4)
unparser
rspec-parameterized-table_syntax (1.0.1)
binding_of_caller
rspec-parameterized-core (< 2)
rspec-support (3.13.1)
rubocop (1.63.0)
rubocop (1.64.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
Expand All @@ -122,8 +123,8 @@ GEM
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.2)
parser (>= 3.3.0.4)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
ruby-progressbar (1.13.0)
ruby2_keywords (0.0.5)
simplecov (0.22.0)
Expand All @@ -132,6 +133,7 @@ GEM
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)
strscan (3.1.0)
thread_safe (0.3.6)
unicode-display_width (2.5.0)
unparser (0.5.7)
Expand All @@ -144,7 +146,7 @@ GEM
mprelude (~> 0.1.0)
parser (>= 3.0.0)
procto (~> 0.0.2)
webmock (3.23.0)
webmock (3.23.1)
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
Expand Down
2 changes: 1 addition & 1 deletion examples/websocket/spot/user_data.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
logger = Common.setup_logger

# on spot testnet
client = Binance::Spot::WebSocket.new(base_url: 'wss://testnet.binance.vision')
client = Binance::Spot::WebSocket.new(base_url: 'wss://stream.testnet.binance.vision')

EM.run do
onopen = proc { logger.info('connected to server') }
Expand Down
2 changes: 1 addition & 1 deletion lib/binance/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Binance
VERSION = '1.5.0'
VERSION = '1.5.1'
end

0 comments on commit 1591716

Please sign in to comment.