diff --git a/CHANGELOG.md b/CHANGELOG.md index 7939286..406eec6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,9 @@ # Change Log -## Head -* 2016-06-06 Fixed request rate throttling to correct calculation of wait times. Prior to this fix, under heavy loads from multiple threads, wait times could be calculated incorrectly and result in excessive delays between requests. Thanks [LifeBCE](https://github.com/lifeBCE)! +## 0.9.6 +* 2018-01-12 Fix streaming issue [#18](https://github.com/nukeproof/oanda_api/issues/18) Thanks [josacar](https://github.com/josacar)! +* 2018-01-10 Add support for latest version of httparty (0.15). Support Ruby MRI 2.4 & 2.5. Fixes [#19](https://github.com/nukeproof/oanda_api/issues/19) +* 2016-06-06 Fixed request rate throttling to correct calculation of wait times. Prior to this fix, under heavy loads from multiple threads, wait times could be calculated incorrectly and result in excessive delays between requests. Thanks [LifeBCE](https://github.com/lifeBCE)! * 2016-04-11 Added support for rate limiting new connections. See [Connection Limits](http://developer.oanda.com/rest-live/best-practices/#connection_limits) for details on limits. Rate limiting is NOT enabled by default. To enable rate limiting: ```ruby diff --git a/lib/oanda_api/version.rb b/lib/oanda_api/version.rb index 71b80ef..3f4f7a6 100644 --- a/lib/oanda_api/version.rb +++ b/lib/oanda_api/version.rb @@ -1,3 +1,3 @@ module OandaAPI - VERSION = "0.9.5" + VERSION = "0.9.6" end