proto-lens 0.7.1.0 → 0.7.1.1
raw patch · 2 files changed
+9/−5 lines, 2 filesdep ~basedep ~bytestringdep ~ghc-primPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, bytestring, ghc-prim, text
API changes (from Hackage documentation)
Files
- Changelog.md +4/−0
- proto-lens.cabal +5/−5
Changelog.md view
@@ -1,5 +1,9 @@ # Changelog for `proto-lens` ++## v0.7.1.1+- Relax upper bounds for ghc-9.2+ ## v0.7.1.0 - Support GHC 9.0. - Fixed parsing of UTF8 chars in text format proto string literals.
proto-lens.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: proto-lens-version: 0.7.1.0+version: 0.7.1.1 synopsis: A lens-based implementation of protocol buffers in Haskell. description: The proto-lens library provides an API for protocol buffers using modern Haskell language and library patterns. Specifically, it provides: .@@ -58,18 +58,18 @@ hs-source-dirs: src build-depends:- base >=4.10 && <4.16- , bytestring ==0.10.*+ base >=4.10 && <4.17+ , bytestring >=0.10 && <0.12 , containers >=0.5 && <0.7 , deepseq ==1.4.*- , ghc-prim >=0.4 && <0.8+ , ghc-prim >=0.4 && <0.9 , lens-family >=1.2 && <2.2 , parsec ==3.1.* , pretty ==1.1.* , primitive >=0.6 && <0.8 , profunctors >=5.2 && <6.0 , tagged ==0.8.*- , text ==1.2.*+ , text >=1.2 && <2.1 , transformers >=0.4 && <0.6 , vector >=0.11 && <0.13 default-language: Haskell2010