hspec-tmp-proc 0.5.2.0 → 0.6.0.0
raw patch · 2 files changed
+14/−4 lines, 2 filesdep ~tmp-procPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: tmp-proc
API changes (from Hackage documentation)
Files
- ChangeLog.md +8/−0
- hspec-tmp-proc.cabal +6/−4
ChangeLog.md view
@@ -1,5 +1,11 @@ # Revision history for hspec-tmp-proc +`hspec-tmp-proc` uses [PVP Versioning][1].++## 0.6.0.0 -- 2024-01-09++* Extend the upper bound for tmp-proc to 0.6+ ## 0.5.2.0 -- 2023-07-17 * Reflect new lower bounds in tmp-proc 0.5.2.0@@ -20,3 +26,5 @@ * Initial release * Initial upload to hackage++[1]: https://pvp.haskell.org
hspec-tmp-proc.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: hspec-tmp-proc-version: 0.5.2.0+version: 0.6.0.0 synopsis: Simplify use of tmp-proc from hspec tests description: Reduces boilerplate when using tmp-proc with hspec license: BSD-3-Clause@@ -17,13 +17,15 @@ README.md tested-with: GHC == 8.8.4- GHC == 8.10.5 GHC == 8.10.7- GHC == 9.2.2+ GHC == 9.0.2+ GHC == 9.2.8+ GHC == 9.4.5 source-repository head type: git location: https://github.com/adetokunbo/tmp-proc.git+ subdir: hspec-tmp-proc library exposed-modules: Test.Hspec.TmpProc@@ -31,7 +33,7 @@ build-depends: , base >=4.11 && <5 , hspec >=2.7.0 && <2.12.0- , tmp-proc >=0.5.2 && <0.6.0+ , tmp-proc >=0.5.2 && <0.7.0 default-language: Haskell2010 ghc-options: -fno-ignore-asserts -Wall