packages feed

proto-lens 0.1.0.3 → 0.1.0.4

raw patch · 2 files changed

+3/−2 lines, 2 filesdep ~data-default-classPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: data-default-class

API changes (from Hackage documentation)

Files

proto-lens.cabal view
@@ -1,5 +1,5 @@ name:                proto-lens-version:             0.1.0.3+version:             0.1.0.4 synopsis:            A lens-based implementation of protocol buffers in Haskell. description:   The proto-lens library provides to protocol buffers using modern@@ -36,7 +36,7 @@                 , base >= 4.8 && < 4.10                 , bytestring == 0.10.*                 , containers == 0.5.*-                , data-default-class == 0.0.*+                , data-default-class >= 0.0 && < 0.2                 , lens-family == 1.2.*                 , parsec == 3.1.*                 , pretty == 1.1.*
src/Data/ProtoLens/TextFormat/Parser.hs view
@@ -19,6 +19,7 @@ import Data.Functor.Identity (Identity) import Data.List (intercalate) import Data.Maybe (catMaybes)+import Data.Monoid (mconcat) import Data.Text.Lazy (Text) import Data.Word (Word8) import Numeric (readOct, readHex)