monad-logger-aeson 0.2.0.0 → 0.2.0.1
raw patch · 3 files changed
+34/−30 lines, 3 filesdep ~aesondep ~aeson-diffdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: aeson, aeson-diff, base, bytestring, fast-logger, hspec, text, unordered-containers
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- monad-logger-aeson.cabal +15/−15
- package.yaml +15/−15
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Change log +## 0.2.0.1++* Relax dependency lower bounds to support GHC 8.8 (@pbrisbin)+ ## 0.2.0.0 * Deprecate `(.@)` in favor of `(.=)` from `aeson`
monad-logger-aeson.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: monad-logger-aeson-version: 0.2.0.0+version: 0.2.0.1 synopsis: JSON logging using monad-logger interface description: @monad-logger-aeson@ provides structured JSON logging using @monad-logger@'s interface.@@ -41,16 +41,16 @@ library ghc-options: -Wall -fwarn-tabs -Wincomplete-uni-patterns -Wredundant-constraints build-depends:- aeson >=1.5.6.0 && <2.1.3.0- , base >=4.14.0.0 && <5- , bytestring >=0.10.12.0 && <0.12.0.0+ aeson >=1.5.2.0 && <2.1.3.0+ , base >=4.13.0.0 && <5+ , bytestring >=0.10.10.1 && <0.12.0.0 , context >=0.2.0.0 && <0.3 , exceptions >=0.10.4 && <0.11.0- , fast-logger >=3.0.5 && <3.2.0+ , fast-logger >=3.0.2 && <3.2.0 , monad-logger >=0.3.36 && <0.4.0- , text >=1.2.4.1 && <1.3.0.0+ , text >=1.2.4.0 && <1.3.0.0 , time >=1.9.3 && <1.12.0.0- , unordered-containers >=0.2.16.0 && <0.3.0.0+ , unordered-containers >=0.2.10.0 && <0.3.0.0 default-language: Haskell2010 executable readme-example@@ -61,11 +61,11 @@ app ghc-options: -Wall -fwarn-tabs -Wincomplete-uni-patterns -Wredundant-constraints build-depends:- aeson >=1.5.6.0 && <2.1.3.0- , base >=4.14.0.0 && <5+ aeson >=1.5.2.0 && <2.1.3.0+ , base >=4.13.0.0 && <5 , monad-logger >=0.3.36 && <0.4.0 , monad-logger-aeson- , text >=1.2.4.1 && <1.3.0.0+ , text >=1.2.4.0 && <1.3.0.0 default-language: Haskell2010 test-suite monad-logger-aeson-test-suite@@ -125,12 +125,12 @@ build-tool-depends: hspec-discover:hspec-discover build-depends:- aeson >=1.5.6.0 && <2.1.3.0- , aeson-diff >=1.1.0.10 && <1.2.0.0- , base >=4.14.0.0 && <5- , bytestring >=0.10.12.0 && <0.12.0.0+ aeson >=1.5.2.0 && <2.1.3.0+ , aeson-diff >=1.1.0.9 && <1.2.0.0+ , base >=4.13.0.0 && <5+ , bytestring >=0.10.10.1 && <0.12.0.0 , directory >=1.3.6.0 && <1.4.0.0- , hspec >=2.7.10 && <2.10.0+ , hspec >=2.7.9 && <2.10.0 , monad-logger >=0.3.36 && <0.4.0 , monad-logger-aeson , time >=1.9.3 && <1.12.0.0
package.yaml view
@@ -1,5 +1,5 @@ name: monad-logger-aeson-version: '0.2.0.0'+version: '0.2.0.1' github: "jship/monad-logger-aeson" license: MIT license-file: LICENSE.md@@ -29,16 +29,16 @@ library: dependencies:- - aeson >=1.5.6.0 && <2.1.3.0- - base >=4.14.0.0 && <5- - bytestring >=0.10.12.0 && <0.12.0.0+ - aeson >=1.5.2.0 && <2.1.3.0+ - base >=4.13.0.0 && <5+ - bytestring >=0.10.10.1 && <0.12.0.0 - context >=0.2.0.0 && <0.3 - exceptions >=0.10.4 && <0.11.0- - fast-logger >=3.0.5 && <3.2.0+ - fast-logger >=3.0.2 && <3.2.0 - monad-logger >=0.3.36 && <0.4.0- - text >=1.2.4.1 && <1.3.0.0+ - text >=1.2.4.0 && <1.3.0.0 - time >=1.9.3 && <1.12.0.0- - unordered-containers >=0.2.16.0 && <0.3.0.0+ - unordered-containers >=0.2.10.0 && <0.3.0.0 source-dirs: library tests:@@ -48,12 +48,12 @@ build-tools: - hspec-discover dependencies:- - aeson >=1.5.6.0 && <2.1.3.0- - aeson-diff >=1.1.0.10 && <1.2.0.0- - base >=4.14.0.0 && <5- - bytestring >=0.10.12.0 && <0.12.0.0+ - aeson >=1.5.2.0 && <2.1.3.0+ - aeson-diff >=1.1.0.9 && <1.2.0.0+ - base >=4.13.0.0 && <5+ - bytestring >=0.10.10.1 && <0.12.0.0 - directory >=1.3.6.0 && <1.4.0.0- - hspec >=2.7.10 && <2.10.0+ - hspec >=2.7.9 && <2.10.0 - monad-logger >=0.3.36 && <0.4.0 - monad-logger-aeson - time >=1.9.3 && <1.12.0.0@@ -63,8 +63,8 @@ source-dirs: app main: readme-example.hs dependencies:- - aeson >=1.5.6.0 && <2.1.3.0- - base >=4.14.0.0 && <5+ - aeson >=1.5.2.0 && <2.1.3.0+ - base >=4.13.0.0 && <5 - monad-logger >=0.3.36 && <0.4.0 - monad-logger-aeson- - text >=1.2.4.1 && <1.3.0.0+ - text >=1.2.4.0 && <1.3.0.0