frisby 0.2.1 → 0.2.2
raw patch · 3 files changed
+12/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Changelog.md +9/−0
- Text/Parsers/Frisby.hs +1/−0
- frisby.cabal +2/−1
+ Changelog.md view
@@ -0,0 +1,9 @@+# Changelog for [`frisby` package](http://github.com/bgamari/frisby)++## 0.2.2++* Compatibility with Semigroup/Monoid proposal++## Prehistory++There is only darkness.
Text/Parsers/Frisby.hs view
@@ -187,6 +187,7 @@ import qualified Data.Semigroup as Semigroup import Data.Monoid hiding(Any,(<>)) import qualified Data.Map as Map+import Prelude hiding((<>)) --inline usable part of Unsafe.Coerce until that module is commonly available import GHC.Base (unsafeCoerce#)
frisby.cabal view
@@ -1,5 +1,5 @@ name: frisby-version: 0.2.1+version: 0.2.2 cabal-version: >=1.6 license: BSD3 copyright: John Meacham (2006)@@ -22,6 +22,7 @@ . In addition to many standard combinators, frisby provides routines to translate standard regex syntax into frisby parsers.+extra-source-files: Changelog.md category: Text tested-with: GHC == 7.6.*, GHC == 7.8.*, GHC == 7.10.*, GHC == 8.0.*, GHC == 8.2.* license-file: LICENSE