packages feed

haskoin-store 1.0.0 → 1.0.1

raw patch · 4 files changed

+13/−6 lines, 4 filesdep ~haskoin-store-dataPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: haskoin-store-data

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -4,6 +4,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) +## [1.0.1] - 2023-08-03++### Changed++- Add compatibility with latest nightly LTS Haskell.+ ## [1.0.0] - 2023-07-28  ### Changed
app/Main.hs view
@@ -15,13 +15,14 @@ import Control.Applicative ((<|>)) import Control.Arrow (second) import Control.Monad (when)-import Control.Monad.Cont (ContT (ContT), lift, runContT)+import Control.Monad.Cont (ContT (ContT), runContT) import Control.Monad.Logger   ( LogLevel (..),     filterLogger,     logInfoS,     runStderrLoggingT,   )+import Control.Monad.Trans (lift) import Control.Monad.Trans.Maybe (MaybeT (..), runMaybeT) import Data.Char (toLower) import Data.Default (Default (..))
haskoin-store.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           haskoin-store-version:        1.0.0+version:        1.0.1 synopsis:       Storage and index for Bitcoin and Bitcoin Cash description:    Please see the README on GitHub at <https://github.com/haskoin/haskoin-store#readme> category:       Bitcoin, Finance, Network@@ -61,7 +61,7 @@     , hashtables >=1.2.4.2     , haskoin-core >=1.0.0     , haskoin-node >=1.0.0-    , haskoin-store-data ==1.0.0+    , haskoin-store-data ==1.0.1     , hedis >=0.12.13     , http-types >=0.12.3     , lens >=4.18.1@@ -118,7 +118,7 @@     , haskoin-core >=1.0.0     , haskoin-node >=1.0.0     , haskoin-store-    , haskoin-store-data ==1.0.0+    , haskoin-store-data ==1.0.1     , hedis >=0.12.13     , http-types >=0.12.3     , lens >=4.18.1@@ -180,7 +180,7 @@     , haskoin-core >=1.0.0     , haskoin-node >=1.0.0     , haskoin-store-    , haskoin-store-data ==1.0.0+    , haskoin-store-data ==1.0.1     , hedis >=0.12.13     , hspec >=2.7.1     , http-types >=0.12.3
src/Haskoin/Store/Manager.hs view
@@ -17,12 +17,12 @@   ( ContT (..),     MonadCont (callCC),     cont,-    lift,     runCont,     runContT,   ) import Control.Monad.Logger (MonadLoggerIO) import Control.Monad.Reader (ReaderT (ReaderT), runReaderT)+import Control.Monad.Trans (lift) import Data.Serialize (decode) import Data.Time.Clock (NominalDiffTime) import Data.Word (Word32)