derulo 1.0.5 → 1.0.7
raw patch · 3 files changed
+21/−10 lines, 3 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- derulo.cabal +14/−7
- package.yaml +6/−2
- stack.yaml +1/−1
derulo.cabal view
@@ -1,11 +1,13 @@--- This file has been generated from package.yaml by hpack version 0.28.2.+cabal-version: 1.12++-- This file has been generated from package.yaml by hpack version 0.31.0. -- -- see: https://github.com/sol/hpack ----- hash: 6c14775a7b4efdaaedebaf6a9ed7db5efd71734d22b7e68806b26600a6c7663e+-- hash: 03f0d5d484a576f1ec174ccde23832c43fe7a2531e9290f6f8179e244abe9e1e name: derulo-version: 1.0.5+version: 1.0.7 synopsis: Parse and render JSON simply. description: Derulo parses and renders JSON simply. category: JSON@@ -15,7 +17,6 @@ license: MIT license-file: LICENSE.markdown build-type: Simple-cabal-version: >= 1.10 extra-source-files: CHANGELOG.markdown package.yaml@@ -35,7 +36,9 @@ library ghc-options: -Weverything -Wno-implicit-prelude -Wno-safe -Wno-unsafe build-depends:- base >=4.9.0 && <4.13+ base >=4.9.0 && <4.14+ if impl(ghc >= 8.8.1)+ ghc-options: -Wno-missing-deriving-strategies default-language: Haskell2010 executable derulo@@ -46,8 +49,10 @@ executables ghc-options: -Weverything -Wno-implicit-prelude -Wno-safe -Wno-unsafe -rtsopts -threaded build-depends:- base >=4.9.0 && <4.13+ base >=4.9.0 && <4.14 , derulo+ if impl(ghc >= 8.8.1)+ ghc-options: -Wno-missing-deriving-strategies default-language: Haskell2010 test-suite test@@ -59,6 +64,8 @@ tests ghc-options: -Weverything -Wno-implicit-prelude -Wno-safe -Wno-unsafe -rtsopts -threaded build-depends:- base >=4.9.0 && <4.13+ base >=4.9.0 && <4.14 , doctest >=0.11.0 && <0.17+ if impl(ghc >= 8.8.1)+ ghc-options: -Wno-missing-deriving-strategies default-language: Haskell2010
package.yaml view
@@ -1,5 +1,5 @@ name: derulo-version: 1.0.5+version: 1.0.7 category: JSON description: Derulo parses and renders JSON simply.@@ -15,12 +15,16 @@ synopsis: Parse and render JSON simply. dependencies:- base: '>= 4.9.0 && < 4.13'+ base: '>= 4.9.0 && < 4.14' ghc-options: - -Weverything - -Wno-implicit-prelude - -Wno-safe - -Wno-unsafe++when:+ - condition: impl(ghc >= 8.8.1)+ ghc-options: -Wno-missing-deriving-strategies library: source-dirs: library
stack.yaml view
@@ -1,1 +1,1 @@-resolver: nightly-2018-10-01+resolver: lts-13.0