packages feed

derulo 1.0.9 → 1.0.10

raw patch · 3 files changed

+15/−30 lines, 3 filesdep ~HUnitdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: HUnit, base

API changes (from Hackage documentation)

Files

LICENSE.markdown view
@@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 Taylor Fausak+Copyright (c) 2021 Taylor Fausak  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
README.markdown view
@@ -1,6 +1,6 @@ # Derulo -[![Travis CI](https://travis-ci.org/tfausak/derulo.svg?branch=master)](https://travis-ci.org/tfausak/derulo)+[![CI](https://github.com/tfausak/derulo/workflows/CI/badge.svg)](https://github.com/tfausak/derulo/actions/new) [![Hackage](https://img.shields.io/hackage/v/derulo)](https://hackage.haskell.org/package/derulo) [![Stackage](https://www.stackage.org/package/derulo/badge/nightly?label=stackage)](https://www.stackage.org/package/derulo) 
derulo.cabal view
@@ -1,7 +1,7 @@-cabal-version: 2.2+cabal-version: >= 1.10  name: derulo-version: 1.0.9+version: 1.0.10  synopsis: Parse and render JSON simply. description: Derulo parses and renders JSON simply.@@ -14,54 +14,39 @@ maintainer: Taylor Fausak  source-repository head-  type: git   location: https://github.com/tfausak/derulo+  type: git -common basics+library+  build-depends:+    base >= 4.13.0 && < 4.16   default-language: Haskell2010+  exposed-modules: Derulo   ghc-options:     -Weverything-    -Wno-all-missed-specialisations     -Wno-implicit-prelude+    -Wno-missing-deriving-strategies     -Wno-missing-exported-signatures-    -Wno-missing-import-lists     -Wno-safe-    -Wno-unsafe--  if impl(ghc >= 8.8)-    ghc-options:-      -Wno-missing-deriving-strategies+  hs-source-dirs: src/lib    if impl(ghc >= 8.10)     ghc-options:       -Wno-missing-safe-haskell-mode       -Wno-prepositive-qualified-module -library-  import: basics--  build-depends:-    base >= 4.9.0 && < 4.15-  default-language: Haskell98-  exposed-modules: Derulo-  hs-source-dirs: src/lib- executable derulo-  import: basics--  build-depends:-    base -any,-    derulo -any+  build-depends: base, derulo+  default-language: Haskell2010   hs-source-dirs: src/exe   main-is: Main.hs  test-suite test-  import: basics-   build-depends:     base -any     , derulo -any-    , HUnit >= 1.6.0 && < 1.7+    , HUnit >= 1.6.1 && < 1.7+  default-language: Haskell2010   hs-source-dirs: src/test   main-is: Main.hs   type: exitcode-stdio-1.0