packages feed

cassava-megaparsec 2.0.4 → 2.1.0

raw patch · 4 files changed

+37/−19 lines, 4 filesdep ~basedep ~vectornew-uploaderPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base, vector

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+## Cassava Megaparsec 2.1.0++* Drop support for GHC 8.0 and below+ ## Cassava Megaparsec 2.0.4  * Allow bytestring-0.11
LICENSE.md view
@@ -1,21 +1,21 @@-# MIT License+MIT License -Copyright © 2016–2021 Stack Builders+Copyright (c) 2022 Stack Builders Inc.  Permission is hereby granted, free of charge, to any person obtaining a copy-of this software and associated documentation files (the "Software"), to-deal in the Software without restriction, including without limitation the-rights to use, copy, modify, merge, publish, distribute, sublicense, and/or-sell copies of the Software, and to permit persons to whom the Software is+of this software and associated documentation files (the "Software"), to deal+in the Software without restriction, including without limitation the rights+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell+copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in-all copies or substantial portions of the Software.+The above copyright notice and this permission notice shall be included in all+copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS-IN THE SOFTWARE.+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE+SOFTWARE.
README.md view
@@ -4,7 +4,7 @@ [![Hackage](https://img.shields.io/hackage/v/cassava-megaparsec.svg?style=flat)](https://hackage.haskell.org/package/cassava-megaparsec) [![Stackage Nightly](http://stackage.org/package/cassava-megaparsec/badge/nightly)](http://stackage.org/nightly/package/cassava-megaparsec) [![Stackage LTS](http://stackage.org/package/cassava-megaparsec/badge/lts)](http://stackage.org/lts/package/cassava-megaparsec)-[![Build Status](https://travis-ci.org/stackbuilders/cassava-megaparsec.svg?branch=master)](https://travis-ci.org/stackbuilders/cassava-megaparsec)+![Build Status](https://github.com/stackbuilders/cassava-megaparsec/actions/workflows/build.yml/badge.svg)  The package provides alternative parser for the [Cassava](https://hackage.haskell.org/package/cassava) package written with@@ -60,6 +60,12 @@  ## License -Copyright © 2016–2021 Stack Builders+MIT, see [the LICENSE file](LICENSE). -Distributed under MIT license.+## Contributing++Do you want to contribute to this project? Please take a look at our [contributing guideline](/docs/CONTRIBUTING.md) to know how you can help us build it.++---+<img src="https://cdn.stackbuilders.com/media/images/Sb-supports.original.png" alt="Stack Builders" width="50%"></img>  +[Check out our libraries](https://github.com/stackbuilders/) | [Join our team](https://www.stackbuilders.com/join-us/)
cassava-megaparsec.cabal view
@@ -1,7 +1,15 @@+cabal-version:        2.0 name:                 cassava-megaparsec-version:              2.0.4-cabal-version:        1.18-tested-with:          GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.3, GHC==8.6.1+version:              2.1.0+tested-with:+  GHC==9.4.4+  GHC==9.2.5+  GHC==9.0.2+  GHC==8.10.7+  GHC==8.8.4+  GHC==8.6.5+  GHC==8.4.4+  GHC==8.2.2 license:              MIT license-file:         LICENSE.md author:               Mark Karpov <markkarpov92@gmail.org>@@ -25,7 +33,7 @@   default:            False  library-  build-depends:      base             >= 4.8   && < 5.0+  build-depends:      base             >= 4.10   && < 5.0                     , bytestring       >= 0.9   && < 0.12                     , cassava          >= 0.4.2 && < 0.6                     , megaparsec       >= 7.0   && < 10.0@@ -49,7 +57,7 @@   main-is:            Spec.hs   hs-source-dirs:     tests   type:               exitcode-stdio-1.0-  build-depends:      base               >= 4.8  && < 5.0+  build-depends:      base               >= 4.10  && < 5.0                     , bytestring         >= 0.9  && < 0.12                     , cassava            >= 0.4.2 && < 0.6                     , cassava-megaparsec