From 4ee1e99df7835d4038a1400ed3e3767671709177 Mon Sep 17 00:00:00 2001 From: Aditya Manthramurthy Date: Mon, 17 Jul 2017 13:58:55 -0700 Subject: [PATCH] Bump up version for new release --- CHANGELOG.md | 16 ++++++++++++++++ minio-hs.cabal | 3 +-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f13c0b..5056e51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/minio-hs.cabal b/minio-hs.cabal index 6075922..d74c490 100644 --- a/minio-hs.cabal +++ b/minio-hs.cabal @@ -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