Skip to content

Commit

Permalink
Added _construct_json_body_and_schema to parser module
Browse files Browse the repository at this point in the history
in order to standardise the streaming response endpoints
  • Loading branch information
jamespeterschinner committed Dec 30, 2017
1 parent 585a9fa commit e3b5632
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,12 @@ Added attributes to TradeSummary:
- Added default argument to Array.get_id & Array.get_instrument
- Removed default value from get_candles(*count*)

5.0.4b0
6.0.0b0
=======

- Added health API and initialization check
- Fixed stream_transactions. Now returns correct type
- Changed streaming responses keys. Where stream_pricing() returned 'PRICE' or 'HEARTBEAT'
response now contains 'price' or 'heartbeat'. Like wise stream_transactions() now returns
'transaction' or 'heartbeat'. This has been done to standardise access to the transaction
stream response and 'heartbeat' objects. Due to the different types these objects may take.
2 changes: 1 addition & 1 deletion async_v20/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async def sleep(s=0.0):
await asyncio.sleep(s)


__version__ = '5.0.3b0'
__version__ = '6.0.0b0'


class OandaClient(AccountInterface, InstrumentInterface, OrderInterface, PositionInterface,
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
# built documents.
#
# The short X.Y version.
version = '5.0.3b0'
version = '6.0.0b0'
# The full version, including alpha/beta/rc tags.
release = '5.0.3b0'
release = '6.0.0b0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit e3b5632

Please sign in to comment.