packages feed

parsec1 1.0.0.0 → 1.0.0.1

raw patch · 2 files changed

+20/−20 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

− CHANGELOG
@@ -1,9 +0,0 @@-parsec2-1.0.0 (Changes from parsec-2.1.0.1)--Sat Jul 24 12:17:43 CDT 2010  Antoine Latter <aslatter@gmail.com>-  * add dcoumentation done for parsec-3--Wed Jun  9 22:23:52 CDT 2010  Antoine Latter <aslatter@gmail.com>-  * in Parsec.Token, sort names after accounting for case sensitivity, not before-  from: Greg Fitzgerald-
parsec1.cabal view
@@ -1,13 +1,13 @@ cabal-version: >= 1.2-name:		parsec1-version:	1.0.0.0-license:	BSD3-license-file:	LICENSE-author:		Daan Leijen <daan@cs.uu.nl>-maintainer:	Christian Maeder <Christian.Maeder@dfki.de>-homepage:	http://www.cs.uu.nl/~daan/parsec.html-category:	Parsing-synopsis:	Monadic parser combinators+name:           parsec1+version:        1.0.0.1+license:        BSD3+license-file:   LICENSE+author:         Daan Leijen <daan@cs.uu.nl>+maintainer:     Christian Maeder <Christian.Maeder@dfki.de>+homepage:       http://www.cs.uu.nl/~daan/parsec.html+category:       Parsing+synopsis:       Portable monadic parser combinators description:     Parsec is designed from scratch as an industrial-strength parser     library.  It is simple, safe, well documented (on the package@@ -16,8 +16,17 @@     .     This package is the core haskell98 part of the parsec2     package, intended to preserve its simplicity and portability.+    .++    Note, that the module names overlap with those of parsec from the Haskell+    Platform, therefore I do not recommend to unconditionally use parsec1 (or+    parsec2 and parsec3) as dependency instead of "parsec < 3", "parsec > 2", or+    just "parsec".  In order to ensure the use of these limited and portable+    parsec1 functions, you may want to hide the official parsec package for+    your own developments.+    .+    This version only differs from the pervious one by a changed description. build-type:     Simple-extra-source-files: CHANGELOG cabal-version:      >= 1.6 library {   exposed-modules:@@ -27,5 +36,5 @@     Text.ParserCombinators.Parsec.Pos,     Text.ParserCombinators.Parsec.Prim,     Text.ParserCombinators.Parsec-  build-depends:	base < 5+  build-depends:    base < 5 }