Bump up version for new release

This commit is contained in:
Aditya Manthramurthy 2017-07-17 13:58:55 -07:00
parent 9e846fc698
commit 4ee1e99df7
2 changed files with 17 additions and 2 deletions

View File

@ -1,6 +1,22 @@
Changelog
==========
## Version 0.3.0
This release includes a breaking change:
Users of the library need not call `runResourceT` explicitly after
calling `runMinio`. This is now done, within the `runMinio` call
making usage a bit simpler.
Other changes:
* Export ListUploadsResult and ListObjectsResult (#48)
* Also take max-keys as an argument for listObjects and max-uploads
for listIncompleteUploads.
* Add bucket and object name validation (#45)
* Add bucketExists and headBucket APIs (#42)
## Version 0.2.1
* Update dependencies, and switch to Stackage LTS 8.5

View File

@ -1,5 +1,5 @@
name: minio-hs
version: 0.2.1
version: 0.3.0
synopsis: A Minio client library, compatible with S3 like services.
description: minio-hs provides simple APIs to access Minio and Amazon
S3 compatible object storage server. For more details,
@ -191,7 +191,6 @@ test-suite minio-hs-test
, transformers-base
, xml-conduit
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
-- ghc-options: -Wall
default-language: Haskell2010
default-extensions: FlexibleContexts
, FlexibleInstances