packages feed

bson 0.3.2.6 → 0.3.2.7

raw patch · 3 files changed

+7/−2 lines, 3 filesdep ~basePVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: base

API changes (from Hackage documentation)

- Data.Bson: instance Data.Bson.Val a => Data.Bson.Val (GHC.Base.Maybe a)
+ Data.Bson: instance Data.Bson.Val a => Data.Bson.Val (GHC.Maybe.Maybe a)
- Data.Bson: (=:) :: (Val v) => Label -> v -> Field
+ Data.Bson: (=:) :: Val v => Label -> v -> Field
- Data.Bson: (=?) :: (Val a) => Label -> Maybe a -> Document
+ Data.Bson: (=?) :: Val a => Label -> Maybe a -> Document
- Data.Bson: at :: (Val v) => Label -> Document -> v
+ Data.Bson: at :: Val v => Label -> Document -> v
- Data.Bson: fval :: (forall a. (Val a) => a -> b) -> Value -> b
+ Data.Bson: fval :: (forall a. Val a => a -> b) -> Value -> b
- Data.Bson: look :: (Monad m) => Label -> Document -> m Value
+ Data.Bson: look :: Monad m => Label -> Document -> m Value
- Data.Bson: typed :: (Val a) => Value -> a
+ Data.Bson: typed :: Val a => Value -> a

Files

CHANGELOG.md view
@@ -1,6 +1,11 @@ # Change Log All notable changes to this project will be documented in this file. This project adheres to [Package Versioning Policy](https://wiki.haskell.org/Package_versioning_policy).+## [0.3.2.7] - 2018-12-17++### Fixed+- Fix compilation on GHC < 7.10+ ## [0.3.2.6] - 2018-05-14  ### Added
Data/Bson/Binary.hs view
@@ -15,7 +15,7 @@  import Prelude hiding (length, concat) #if !MIN_VERSION_base(4,8,0)-import Control.Applicative ((<$>), (<*>))+import Control.Applicative ((<$>), (<*>), (<*)) #endif import Control.Monad (when) import Data.Binary.Get (Get, runGet, getWord8, getWord32be, getWord64be,
bson.cabal view
@@ -1,5 +1,5 @@ Name:          bson-Version:       0.3.2.6+Version:       0.3.2.7 Synopsis:      BSON documents are JSON-like objects with a standard binary                encoding. Description:   A BSON Document is an untyped (dynamically type-checked) record.