packages feed

bytes 0.15 → 0.15.0.1

raw patch · 4 files changed

+13/−15 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.markdown view
@@ -1,3 +1,8 @@+0.15.0.1+--------+* Updated github URLs in the .cabal file.+* We now compile without warnings on GHC 7.10.+ 0.15 ---- * Fixed a serious bug in the semantics of generic `Serial1` generation for the recursive case and improved `Generic1` support for `:.:`.
bytes.cabal view
@@ -1,14 +1,14 @@ name:          bytes category:      Data, Serialization-version:       0.15+version:       0.15.0.1 license:       BSD3 cabal-version: >= 1.8 license-file:  LICENSE author:        Edward A. Kmett maintainer:    Edward A. Kmett <ekmett@gmail.com> stability:     experimental-homepage:      http://github.com/analytics/bytes-bug-reports:   http://github.com/analytics/bytes/issues+homepage:      https://github.com/ekmett/bytes+bug-reports:   https://github.com/ekmett/bytes/issues copyright:     Copyright (C) 2013-2015 Edward A. Kmett build-type:    Custom tested-with:   GHC == 7.4.1, GHC == 7.6.1@@ -28,7 +28,7 @@  source-repository head   type: git-  location: git://github.com/analytics/bytes.git+  location: git://github.com/ekmett/bytes.git  -- You can disable the doctests test suite with -f-test-doctests flag test-doctests@@ -37,11 +37,6 @@   default: True   manual: True -flag lib-Werror-  description: Treat warnings as errors when building.-  default: False-  manual: True- library   build-depends:     base                      >= 4.3      && < 5,@@ -66,9 +61,6 @@     Data.Bytes.Signed     Data.Bytes.VarInt -  if flag(lib-Werror)-    ghc-options: -Werror-   ghc-options: -Wall -fwarn-tabs -O2   c-sources: cbits/i2d.c   hs-source-dirs: src@@ -88,6 +80,3 @@       directory      >= 1.0,       doctest        >= 0.9.1,       filepath       >= 1.2--  if impl(ghc<7.6.1)-    ghc-options: -Werror
src/Data/Bytes/Get.hs view
@@ -25,7 +25,9 @@   , runGetS   ) where +#if __GLASGOW_HASKELL__ < 710 import Control.Applicative+#endif import Control.Monad.Reader import Control.Monad.Trans.Except as Except import Control.Monad.RWS.Lazy as Lazy
src/Data/Bytes/Put.hs view
@@ -27,7 +27,9 @@   , runPutS   ) where +#if __GLASGOW_HASKELL__ < 710 import Control.Applicative+#endif import Control.Monad.Reader import Control.Monad.Trans.Except as Except import Control.Monad.RWS.Lazy as Lazy