hspec-wai 0.9.1 → 0.9.2
raw patch · 3 files changed
+6/−6 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- LICENSE +1/−1
- hspec-wai.cabal +3/−3
- src/Test/Hspec/Wai/Internal.hs +2/−2
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2012-2015 Fujimura Daisuke, Simon Hengel+Copyright (c) 2012-2018 Fujimura Daisuke, Simon Hengel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
hspec-wai.cabal view
@@ -4,16 +4,16 @@ -- -- see: https://github.com/sol/hpack ----- hash: f19a5cdb12c601cb9d7b3f43cfab50f72b7e014ca5a9a1ba0c69aaa12b380931+-- hash: 8cd8444fb81ce20f9ac1bc6ef05bcaf0c7bfec1e15deefc045dbe71f1830a92b name: hspec-wai-version: 0.9.1+version: 0.9.2 homepage: https://github.com/hspec/hspec-wai#readme bug-reports: https://github.com/hspec/hspec-wai/issues license: MIT license-file: LICENSE copyright: (c) 2012-2014 Fujimura Daisuke,- (c) 2014-2015 Simon Hengel+ (c) 2014-2018 Simon Hengel author: Fujimura Daisuke <me@fujimuradaisuke.com>, Simon Hengel <sol@typeful.net> maintainer: Fujimura Daisuke <me@fujimuradaisuke.com>,
src/Test/Hspec/Wai/Internal.hs view
@@ -22,7 +22,7 @@ import Test.Hspec.Core.Spec import Test.Hspec.Wai.Util (formatHeader) -#if MIN_VERSION_base(4,12,0)+#if MIN_VERSION_base(4,9,0) import Control.Monad.Fail #endif @@ -35,7 +35,7 @@ -- session that carries the `Application` under test and some client state. newtype WaiSession a = WaiSession {unWaiSession :: Session a} deriving (Functor, Applicative, Monad, MonadIO-#if MIN_VERSION_base(4,12,0)+#if MIN_VERSION_base(4,9,0) , MonadFail #endif )