tibetan-utils 0.1.1.5 → 0.1.1.9
raw patch · 5 files changed
+4/−19 lines, 5 filesdep ~megaparsecsetup-changedPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: megaparsec
API changes (from Hackage documentation)
Files
- Setup.hs +0/−2
- cabal.project.local +0/−2
- src/Text/Megaparsec/Lexer/Tibetan.hs +1/−1
- stack.yaml +0/−8
- tibetan-utils.cabal +3/−6
− Setup.hs
@@ -1,2 +0,0 @@-import Distribution.Simple-main = defaultMain
− cabal.project.local
@@ -1,2 +0,0 @@-documentation: true-tests: true
src/Text/Megaparsec/Lexer/Tibetan.hs view
@@ -24,7 +24,7 @@ readBo = fmap fromIntegral . rightToMaybe . runParser (parseNumber :: Parser Integer) "" -- | Return verbose errors.-readBoV :: (Integral a) => String -> Either (ParseError Char Void) a+readBoV :: (Integral a) => String -> Either (ParseErrorBundle String Void) a readBoV = fmap fromIntegral . runParser (parseNumber :: Parser Integer) "" -- | Parse Tibetan numerals, returning a positive integer
− stack.yaml
@@ -1,8 +0,0 @@-----resolver: lts-11.3-packages:- - '.'-extra-deps:- - composition-prelude-1.3.0.8-flags: {}-extra-package-dbs: []
tibetan-utils.cabal view
@@ -1,12 +1,11 @@ cabal-version: >=1.10 name: tibetan-utils-version: 0.1.1.5+version: 0.1.1.9 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2016-2018 Vanessa McHale maintainer: vamchale@gmail.com author: Vanessa McHale-homepage: https://github.com/vmchale/tibetan-utils#readme synopsis: Parse and display tibetan numerals description: This package provides a [megaparsec](http://hackage.haskell.org/package/megaparsec) parser for Tibetan numerals, as well as efficient means to display numbers using Tibetan numerals.@@ -14,8 +13,6 @@ build-type: Simple extra-source-files: README.md- cabal.project.local- stack.yaml source-repository head type: git@@ -31,10 +28,10 @@ default-extensions: OverloadedStrings build-depends: base >=4.8 && <5,- megaparsec >=6.0,+ megaparsec >=7.0, text -any, composition-prelude -any,- text-show -any,+ text-show >=3.3, either -any test-suite tibetan-utils-test