From 2ca7f7541a215ee4e801c294106424f3ab06638e Mon Sep 17 00:00:00 2001 From: Michael Dunn Date: Sun, 29 Aug 2021 00:37:07 -0500 Subject: [PATCH] Updating to version 0.9.3.0 --- changelog.md | 16 ++++++++++++++++ coinbase-pro.cabal | 2 +- package.yaml | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 5b6fa74..2b46a18 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,19 @@ +# Version 0.9.3.0 + +- `Order` now has `Maybe Bool` instead of `Bool` for `postOnly`. Required to maintain spec compliance. + From https://docs.pro.coinbase.com/#upcoming-changes: + +``` +08/09/21 + + Orders with a "pending" status returned by the REST API endpoints GET /orders, GET /orders/, + and GET /orders/client: will have a reduced set of fields. See the List Orders documentation + for more details. Orders with non-pending statuses will be unaffected by this change. The change will + take effect in Sandbox starting after August 12th, 2021 and in Production starting after August 19th, 2021. +``` + +- Added tests to test order parsing from json file + # Version 0.9.2.2 - Added `CoinbasePro.Unauthenticated.singleProduct` diff --git a/coinbase-pro.cabal b/coinbase-pro.cabal index 9fc4b6a..ab5578b 100644 --- a/coinbase-pro.cabal +++ b/coinbase-pro.cabal @@ -5,7 +5,7 @@ cabal-version: 1.12 -- see: https://github.com/sol/hpack name: coinbase-pro -version: 0.9.2.2 +version: 0.9.3.0 synopsis: Client for Coinbase Pro description: Client for Coinbase Pro REST and Websocket APIs category: Web, Finance diff --git a/package.yaml b/package.yaml index 207a692..f8b4b3d 100644 --- a/package.yaml +++ b/package.yaml @@ -1,5 +1,5 @@ name: coinbase-pro -version: 0.9.2.2 +version: 0.9.3.0 description: Client for Coinbase Pro REST and Websocket APIs homepage: https://github.com/mdunnio/coinbase-pro#readme bug-reports: https://github.com/mdunnio/coinbase-pro/issues