Updated docs

This commit is contained in:
Chris Allen 2014-06-20 11:22:03 -05:00
parent 2eb39f71fb
commit 5558959fda
3 changed files with 22 additions and 4 deletions

View File

@ -580,10 +580,19 @@ let filter = RangeFilter (FieldName "age")
-- -> CacheKey
-- -> Filter
let filter = RegexpFilter (FieldName "user") (Regexp "bite.*app")
RegexpAll (CacheName "test") False (CacheKey "key")
AllRegexpFlags (CacheName "test") False (CacheKey "key")
-- RegexpFlags can be a combination of RegexpAll, Complement,
-- Interval, Intersection, AnyString, and a combination of two options thereof.
-- n.b.
-- data RegexpFlags = AllRegexpFlags
-- | NoRegexpFlags
-- | SomeRegexpFlags (NonEmpty RegexpFlag) deriving (Eq, Show)
-- data RegexpFlag = AnyString
-- | Automaton
-- | Complement
-- | Empty
-- | Intersection
-- | Interval deriving (Eq, Show)
#+END_SRC

View File

@ -1,5 +1,5 @@
name: bloodhound
version: 0.1.0.3
version: 0.2.0.0
synopsis: ElasticSearch client library for Haskell
description: ElasticSearch made awesome for Haskell hackers
homepage: https://github.com/bitemyapp/bloodhound

9
changelog Normal file
View File

@ -0,0 +1,9 @@
** 0.2.x
0.1.0.2 --> 0.2.0.0
===============
* Renamed createMapping to putMapping
* Fixed and rebuilt documentation
* RegexpFlags changed to a sum type instead of Text, thanks @MichaelXavier!