unleash-client-haskell 0.5.0 → 0.6.0
raw patch · 2 files changed
+17/−10 lines, 2 filesdep ~aesondep ~basedep ~containersPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: aeson, base, containers, text, time, unleash-client-haskell-core, unliftio
API changes (from Hackage documentation)
- Unleash.Client: data Context
+ Unleash.Client: data () => Context
- Unleash.Client: data VariantResponse
+ Unleash.Client: data () => VariantResponse
Files
- CHANGELOG.md +7/−0
- unleash-client-haskell.cabal +10/−10
CHANGELOG.md view
@@ -1,3 +1,10 @@+## <small>0.6.0 (2023-10-16)</small>++* Set version to 0.6.0 ([925b4f6](https://github.com/finn-no/unleash-client-haskell/commit/925b4f6))+* Track nixpkgs-unstable ([5ad3c6d](https://github.com/finn-no/unleash-client-haskell/commit/5ad3c6d))+++ ## <small>0.5.0 (2023-10-15)</small> * Add homepage ([9c6d21c](https://github.com/finn-no/unleash-client-haskell/commit/9c6d21c))
unleash-client-haskell.cabal view
@@ -1,7 +1,7 @@ cabal-version: 3.0 name: unleash-client-haskell-version: 0.5.0+version: 0.6.0 synopsis: Unleash feature toggle client description: This is an [Unleash](https://www.getunleash.io/) client SDK for Haskell.@@ -25,8 +25,6 @@ extra-source-files: README.md common all- build-depends:- base >=4.7 && <5, default-extensions: BlockArguments DataKinds@@ -64,25 +62,27 @@ Paths_unleash_client_haskell hs-source-dirs: src build-depends:- aeson >= 2.0.3 && < 2.1,- containers >= 0.6.5 && < 0.7,+ aeson >= 2.0.3 && < 2.2,+ base >= 4.7 && < 5,+ containers >= 0.6.4 && < 0.7,+ mtl >= 2.2.2 && < 2.3,+ text >= 1.2.5 && < 2.1,+ time >= 1.9.3 && < 1.13, http-client-tls >= 0.3.6 && < 0.4, http-media >= 0.8.0 && < 0.9,- mtl >= 2.2.2 && < 2.3, servant >= 0.19.1 && < 0.20, servant-client >= 0.19 && < 0.20,- text >= 1.2.5 && < 1.3,- time >= 1.11.1 && < 1.12,- unleash-client-haskell-core >= 0.9.0 && < 0.10,+ unleash-client-haskell-core >= 0.8.7 && < 0.11, executable example import: all main-is: Main.hs hs-source-dirs: example build-depends:+ unliftio >= 0.2.23 && < 0.3,+ base, mtl, servant-client, text, unleash-client-haskell, unleash-client-haskell-core,- unliftio >= 0.2.24 && < 0.3,