Update changelog and version for release 1.0.1 (#89)

- Adds lower-bounds on dependencies.
This commit is contained in:
Aditya Manthramurthy 2018-05-29 17:02:09 -07:00 committed by GitHub
parent d25c7ef1dc
commit 56856e82e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 24 deletions

View File

@ -1,6 +1,14 @@
Changelog 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 ## Version 1.0.0
This new release changes the following APIs to add new capabilities: This new release changes the following APIs to add new capabilities:

View File

@ -1,5 +1,5 @@
name: minio-hs name: minio-hs
version: 1.0.0 version: 1.0.1
synopsis: A Minio Haskell Library for Amazon S3 compatible cloud synopsis: A Minio Haskell Library for Amazon S3 compatible cloud
storage. storage.
description: The Minio Haskell client library provides simple APIs to description: The Minio Haskell client library provides simple APIs to
@ -44,29 +44,29 @@ library
, Network.Minio.XmlGenerator , Network.Minio.XmlGenerator
, Network.Minio.XmlParser , Network.Minio.XmlParser
build-depends: base >= 4.7 && < 5 build-depends: base >= 4.7 && < 5
, protolude >= 0.1.6 , protolude >= 0.2 && < 0.3
, aeson , aeson >= 1.2
, base64-bytestring , base64-bytestring >= 1.0
, bytestring , bytestring >= 0.10
, case-insensitive , case-insensitive >= 1.2
, conduit , conduit >= 1.3
, conduit-extra , conduit-extra >= 1.3
, containers , containers >= 0.5
, cryptonite , cryptonite >= 0.25
, cryptonite-conduit , cryptonite-conduit >= 0.2
, data-default , data-default >= 0.7
, filepath , filepath >= 1.4
, http-client , http-client >= 0.5
, http-conduit , http-conduit >= 2.3
, http-types , http-types >= 0.12
, memory , memory >= 0.14
, resourcet , resourcet >= 1.2
, text , text >= 1.2
, time , time >= 1.8
, transformers , transformers >= 0.5
, unliftio , unliftio >= 0.2
, unliftio-core , unliftio-core >= 0.1
, xml-conduit , xml-conduit >= 1.8
default-language: Haskell2010 default-language: Haskell2010
default-extensions: BangPatterns default-extensions: BangPatterns
, FlexibleContexts , FlexibleContexts