From aab796481add22c75814cc011d11af2b47d26de6 Mon Sep 17 00:00:00 2001 From: Chris Allen Date: Wed, 15 Jul 2015 20:47:45 -0500 Subject: [PATCH] changelog, stack.yaml update --- bloodhound.cabal | 4 ++-- changelog.md | 13 +++++++++++++ stack.yaml | 2 +- upload-docs.sh | 2 +- 4 files changed, 17 insertions(+), 4 deletions(-) diff --git a/bloodhound.cabal b/bloodhound.cabal index e5a6734..9172f38 100644 --- a/bloodhound.cabal +++ b/bloodhound.cabal @@ -1,5 +1,5 @@ name: bloodhound -version: 0.6.0.0 +version: 0.7.0.0 synopsis: ElasticSearch client library for Haskell description: ElasticSearch made awesome for Haskell hackers homepage: https://github.com/bitemyapp/bloodhound @@ -37,7 +37,7 @@ library mtl >= 1.0 && <2.3, transformers >= 0.2 && <0.5, http-types >= 0.8 && <0.9, - vector >= 0.10.9 && <0.11, + vector >= 0.10.9 && <0.12, uri-bytestring >= 0.1 && <0.2, exceptions, data-default-class diff --git a/changelog.md b/changelog.md index 9cb4c5e..14dd0f1 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,16 @@ +0.7.0.0 +=================== + +* Added QueryFilter thanks to Bjørn Nordbø! + +* Support for optimistic concurrency control thanks again to @MichaelXavier! + + +0.6.0.0 +=================== + +* Refactored concrete IO types and unsophisticated connection management into a proper `MonadBH` typeclass. This tremendous work was done by @MichaelXavier! + 0.5.0.0 =================== diff --git a/stack.yaml b/stack.yaml index 936ffbf..8cc682d 100644 --- a/stack.yaml +++ b/stack.yaml @@ -5,4 +5,4 @@ extra-deps: - doctest-prop-0.2.0.1 - quickcheck-properties-0.1 - uri-bytestring-0.1.2 -resolver: lts-2.11 +resolver: lts-2.18 diff --git a/upload-docs.sh b/upload-docs.sh index 37aebfd..fbe1d2f 100755 --- a/upload-docs.sh +++ b/upload-docs.sh @@ -10,7 +10,7 @@ if [ ! -f "$cabal_file" ]; then fi pkg=bloodhound -ver=0.6.0.0 +ver=0.7.0.0 if [ -z "$pkg" ]; then echo "Unable to determine package name"