packages feed

bytestring-aeson-orphans 0.1.0.0 → 0.1.0.1

raw patch · 3 files changed

+8/−5 lines, 3 filesdep ~aesondep ~textPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: aeson, text

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,4 +1,7 @@ # Revision history for bytestring-aeson-orphans -## 2021-11-17+## v0.1.0.1+* Loosen aeson version bounds++## v0.1.0.0 2021-11-17 * First changes. Added code for bytestring JSON instances using AESON.
README.md view
@@ -1,5 +1,5 @@ # bytestring-aeson-orphans-[![Haskell](https://img.shields.io/badge/language-Haskell-orange.svg)](https://haskell.org) [![Hackage](https://img.shields.io/hackage/v/bytestring-aeson-orphans.svg)](https://hackage.haskell.org/package/bytestring-aeson-orphans) [![Hackage CI](https://matrix.hackage.haskell.org/api/v2/packages/bytestring-aeson-orphans/badge)](https://matrix.hackage.haskell.org/#/package/bytestring-aeson-orphans) [![Travis CI](https://api.travis-ci.org/obsidiansystems/bytestring-aeson-orphans.svg?branch=develop)](https://travis-ci.org/obsidiansystems/bytestring-aeson-orphans) [![Github CI](https://github.com/obsidiansystems/bytestring-aeson-orphans/workflows/Haskell%20CI/badge.svg)](https://github.com/obsidiansystems/bytestring-aeson-orphans/actions) [![BSD3 License](https://img.shields.io/badge/license-BSD3-blue.svg)](https://github.com/obsidiansystems/bytestring-aeson-orphans/blob/master/LICENSE)+[![Haskell](https://img.shields.io/badge/language-Haskell-orange.svg)](https://haskell.org) [![Hackage](https://img.shields.io/hackage/v/bytestring-aeson-orphans.svg)](https://hackage.haskell.org/package/bytestring-aeson-orphans) [![Github CI](https://github.com/obsidiansystems/bytestring-aeson-orphans/workflows/Haskell%20CI/badge.svg)](https://github.com/obsidiansystems/bytestring-aeson-orphans/actions) [![BSD3 License](https://img.shields.io/badge/license-BSD3-blue.svg)](https://github.com/obsidiansystems/bytestring-aeson-orphans/blob/master/LICENSE)  _Aeson instances for ByteString, using base 64 encoding._ 
bytestring-aeson-orphans.cabal view
@@ -1,6 +1,6 @@ cabal-version:      2.4 name:               bytestring-aeson-orphans-version:            0.1.0.0+version:            0.1.0.1 synopsis:           Aeson instances for ByteString, using base 64 encoding description:   Encode ByteStrings as valid JSON using Aeson.  The instances provided by this@@ -23,11 +23,11 @@   hs-source-dirs: src    build-depends:-      aeson >= 1.4 && < 2+      aeson >= 1.4 && < 2.2     , base >= 4.10 && < 5     , base64-bytestring >= 1.0 && < 1.3     , bytestring >= 0.10 && < 0.12-    , text >= 1 && < 1.3+    , text >= 1 && < 2.1    exposed-modules: ByteString.Aeson.Orphans