packages feed

eventstore 0.15.0.1 → 0.15.0.2

raw patch · 5 files changed

+25/−12 lines, 5 filesdep ~aesondep ~timePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: aeson, time

API changes (from Hackage documentation)

Files

.travis.yml view
@@ -44,7 +44,11 @@   - env: BUILD=cabal GHCVER=8.0.2 CABALVER=head HAPPYVER=1.19.5 ALEXVER=3.1.7     compiler: ": #GHC 8.0.2"     addons: {apt: {packages: [cabal-install-head,ghc-8.0.2,happy-1.19.5,alex-3.1.7], sources: [hvr-ghc]}}+  - env: BUILD=cabal GHCVER=8.2.1 CABALVER=head HAPPYVER=1.19.5 ALEXVER=3.1.7+    compiler: ": #GHC 8.2.1"+    addons: {apt: {packages: [cabal-install-head,ghc-8.2.1,happy-1.19.5,alex-3.1.7], sources: [hvr-ghc]}} +   # Build with the newest GHC and cabal-install. This is an accepted failure,   # see below.   - env: BUILD=cabal GHCVER=head  CABALVER=head HAPPYVER=1.19.5 ALEXVER=3.1.7@@ -57,8 +61,8 @@     compiler: ": #stack default"     addons: {apt: {packages: [libgmp-dev]}} -  - env: BUILD=stack ARGS="--resolver lts-8"-    compiler: ": #stack 8.0.2"+  - env: BUILD=stack ARGS="--compiler ghc-8.0.2 --resolver lts-9"+    compiler: ": #stack 8.0.2 lts-9"     addons: {apt: {packages: [libgmp-dev]}}    # Nightly builds are allowed to fail@@ -73,8 +77,8 @@    # Travis includes an OS X which is incompatible with GHC 7.8.4 -  - env: BUILD=stack ARGS="--resolver lts-8"-    compiler: ": #stack 8.0.2 osx"+  - env: BUILD=stack ARGS="--resolver lts-9 --compiler ghc-8.0.2"+    compiler: ": #stack 8.0.2 osx lts-9"     os: osx    - env: BUILD=stack ARGS="--resolver nightly"
CHANGELOG.markdown view
@@ -1,3 +1,8 @@+0.15.0.2+--------+* Support GHC 8.2.1.+* Support Stackage LTS 9.+ 0.15.0.1 -------- * Discard version restriction on `hashable` library.
Database/EventStore/Internal/Control.hs view
@@ -53,7 +53,11 @@  -------------------------------------------------------------------------------- import Data.Typeable+#if __GLASGOW_HASKELL__ != 802 import Data.Typeable.Internal+#else+import GHC.Fingerprint+#endif  -------------------------------------------------------------------------------- import Control.Monad.Reader
Database/EventStore/Internal/Operation/ReadEvent/Message.hs view
@@ -4,7 +4,7 @@ #if __GLASGOW_HASKELL__ < 800 {-# OPTIONS_GHC -fcontext-stack=26 #-} #else-{-# OPTIONS_GHC -freduction-depth=26 #-}+{-# OPTIONS_GHC -freduction-depth=0 #-} #endif -------------------------------------------------------------------------------- -- |
eventstore.cabal view
@@ -1,9 +1,9 @@--- This file has been generated from package.yaml by hpack version 0.17.0.+-- This file has been generated from package.yaml by hpack version 0.17.1. -- -- see: https://github.com/sol/hpack  name:           eventstore-version:        0.15.0.1+version:        0.15.0.2 synopsis:       EventStore TCP Client description:    EventStore TCP Client <http://geteventstore.com> category:       Database@@ -14,7 +14,7 @@ copyright:      Yorick Laupa license:        BSD3 license-file:   LICENSE-tested-with:    GHC >= 7.8.3 && < 8.0.3+tested-with:    GHC >= 7.8.3 && < 8.2.1 build-type:     Simple cabal-version:  >= 1.10 @@ -36,12 +36,12 @@   default-extensions: NoImplicitPrelude OverloadedStrings LambdaCase RecordWildCards RankNTypes TemplateHaskell QuasiQuotes FlexibleContexts MultiParamTypeClasses TypeFamilies ConstraintKinds   build-depends:       base >=4.7 && <5-    , aeson >=0.8 && <1.2+    , aeson >=0.8 && <1.3     , mono-traversable ==1.*     , connection ==0.2.*     , dotnet-timespan     , stm-    , time >=1.4 && <1.7+    , time >=1.4 && <1.9     , uuid ==1.3.*     , lifted-base     , text@@ -139,12 +139,12 @@   ghc-options: -threaded -rtsopts -with-rtsopts=-N   build-depends:       base >=4.7 && <5-    , aeson >=0.8 && <1.2+    , aeson >=0.8 && <1.3     , mono-traversable ==1.*     , connection ==0.2.*     , dotnet-timespan     , stm-    , time >=1.4 && <1.7+    , time >=1.4 && <1.9     , uuid ==1.3.*     , lifted-base     , text