Skip to content

Commit

Permalink
release 1.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-zehentleitner committed May 18, 2019
1 parent 19148ee commit 4bf0d70
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Expand Up @@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## 1.2.7.dev (development stage/unreleased)
## 1.2.8.dev (development stage/unreleased)

## 1.2.8
### Added
- lib version to print_summary()
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -40,7 +40,7 @@

setuptools.setup(
name='unicorn-binance-websocket-api',
version='1.2.7',
version='1.2.8',
author="UNICORN Data Analysis",
url="https://www.unicorn-data.com",
scripts=['unicorn_binance_websocket_api.py'],
Expand Down
Expand Up @@ -64,7 +64,7 @@ class BinanceWebSocketApiManager(threading.Thread):

def __init__(self, process_stream_data=False):
threading.Thread.__init__(self)
self.version = "1.2.7.dev"
self.version = "1.2.8"
self.websocket_base_uri = "wss://stream.binance.com:9443/"
if process_stream_data is False:
# no special method to process stream data provided, so we use write_to_stream_buffer:
Expand Down

0 comments on commit 4bf0d70

Please sign in to comment.