diff --git a/CHANGELOG.md b/CHANGELOG.md index abd32da..f636dd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Changelog ========== +## Version 1.0.1 + +This version brings the following (non-breaking) changes: + +* Remove dependency on text-format (#86) +* Remove direct dependency on exceptions (#87) +* Adds lower-bounds on dependencies. + ## Version 1.0.0 This new release changes the following APIs to add new capabilities: diff --git a/minio-hs.cabal b/minio-hs.cabal index 5d7545b..852cf64 100644 --- a/minio-hs.cabal +++ b/minio-hs.cabal @@ -1,5 +1,5 @@ name: minio-hs -version: 1.0.0 +version: 1.0.1 synopsis: A Minio Haskell Library for Amazon S3 compatible cloud storage. description: The Minio Haskell client library provides simple APIs to @@ -44,29 +44,29 @@ library , Network.Minio.XmlGenerator , Network.Minio.XmlParser build-depends: base >= 4.7 && < 5 - , protolude >= 0.1.6 - , aeson - , base64-bytestring - , bytestring - , case-insensitive - , conduit - , conduit-extra - , containers - , cryptonite - , cryptonite-conduit - , data-default - , filepath - , http-client - , http-conduit - , http-types - , memory - , resourcet - , text - , time - , transformers - , unliftio - , unliftio-core - , xml-conduit + , protolude >= 0.2 && < 0.3 + , aeson >= 1.2 + , base64-bytestring >= 1.0 + , bytestring >= 0.10 + , case-insensitive >= 1.2 + , conduit >= 1.3 + , conduit-extra >= 1.3 + , containers >= 0.5 + , cryptonite >= 0.25 + , cryptonite-conduit >= 0.2 + , data-default >= 0.7 + , filepath >= 1.4 + , http-client >= 0.5 + , http-conduit >= 2.3 + , http-types >= 0.12 + , memory >= 0.14 + , resourcet >= 1.2 + , text >= 1.2 + , time >= 1.8 + , transformers >= 0.5 + , unliftio >= 0.2 + , unliftio-core >= 0.1 + , xml-conduit >= 1.8 default-language: Haskell2010 default-extensions: BangPatterns , FlexibleContexts