packages feed

HsSyck 0.43 → 0.44

raw patch · 2 files changed

+13/−6 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Changes view
@@ -1,16 +1,22 @@-[Changes for 0.041 - 2008-02-19]+[Changes for 0.43 - 2008-06-21] +* Properly documented the language extensions we use in the .cabal file.++* No longer compiles with -O2 as Cabal automatically adds -O anyway.++[Changes for 0.41 - 2008-02-19]+ * Update the ByteString function calls for the ByteStrings packaged   with GHC 6.8.2 (and up).   Improve Cabal metadata.   Contributed by: Gwern Branwen -[Changes for 0.04 - 2007-06-16]+[Changes for 0.4 - 2007-06-16]  * Add Haddock documentations; no functional changes.   Contributed by: Jaap Weel -[Changes for 0.03 - 2007-05-21]+[Changes for 0.3 - 2007-05-21]  * First working Hackage release: Unbreak the build by adding   missing extra-source-files.
HsSyck.cabal view
@@ -1,6 +1,6 @@ Name:                HsSyck-Version:             0.43-Category:            Text+Version:             0.44+Category:            Text, Pugs Synopsis:            Fast, lightweight YAML loader and dumper Description:         This is a simple YAML ('Yet Another Markup Language') processor,                      used by the Pugs project for handling data serialization; this can be@@ -21,10 +21,11 @@  Build-Depends:       base, bytestring>=0.9.0.1 Build-Type:          Simple-Tested-With:         GHC==6.8.2+Tested-With:         GHC==6.8.2, GHC==6.8.3  extensions:          ForeignFunctionInterface, MagicHash, RecursiveDo,                      DeriveDataTypeable, TypeSynonymInstances, PatternGuards+ ghc-options:         -funbox-strict-fields  data-files:          Changes