stooq-api 0.3.0.0 → 0.3.1.0
raw patch · 3 files changed
+12/−4 lines, 3 filesdep ~aesondep ~base
Dependency ranges changed: aeson, base
Files
- CHANGELOG.md +8/−0
- src/lib/Web/Data/Stooq/API.hs +1/−1
- stooq-api.cabal +3/−3
CHANGELOG.md view
@@ -1,5 +1,13 @@ # Revision history for stooq +## 0.3.1.0 -- 2022-07-07++* Migrating to nixpkgs 22.05.++## 0.3.0.0 -- 2022-07-06++* Removing the field `openint` from the response, as sometimes it's missing in server's response, causing the entire call to fail.+ ## 0.2.0.0 -- 2022-04-08 * It makes more sense for the `StooqPrice` record to contain a field `symbol` of type `StooqSymbol` instead of `String`.
src/lib/Web/Data/Stooq/API.hs view
@@ -8,7 +8,7 @@ -- -- xxxx.UK: London Stock Exchange (LSE) ----- xxxx.US: NYSE (OTC market not available, so a lot of ADRs like `OGZPY` or `SBRCY` can't be fetched)+-- xxxx.US: NYSE (OTC market not available, so a lot of ADRs like "OGZPY" or "SBRCY" can't be fetched) -- -- xxxx.DE: Deutsche Börse --
stooq-api.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.0 name: stooq-api-version: 0.3.0.0+version: 0.3.1.0 synopsis: A simple wrapper around stooq.pl API for downloading market data. description: Here's a simple wrapper around API offered by Stooq.pl.@@ -34,9 +34,9 @@ library exposed-modules: Web.Data.Stooq.API- build-depends: base >= 4.13 && < 4.15,+ build-depends: base >= 4.13 && < 4.16, bytestring >= 0.10.10 && < 0.11,- aeson >= 1.5.6 && < 1.6,+ aeson >= 2.0 && < 2.1, lens >= 4.18.1 && < 5.1, text >= 1.2 && < 1.3, time >= 1.9.3 && < 1.10,