proto-lens-optparse 0.1.0.3 → 0.1.0.4
raw patch · 2 files changed
+23/−2 lines, 2 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- Changelog.md +20/−0
- proto-lens-optparse.cabal +3/−2
+ Changelog.md view
@@ -0,0 +1,20 @@+# Changelog for `proto-lens-optparse`++## Unreleased changes++## v0.1.0.4+- Bump the dependency on `base` to support `ghc-8.2.1`.++## 0.1.0.3+- Bump the dependency for `optparse-applicative-0.14`.++## 0.1.0.2+- Bump the dependencies for `optparse-applicative-0.13` and+ `proto-lens-0.2`.++## 0.1.0.1+- Bump the dependency on `base` to support `ghc-8.0`.+++## 0.1.0.0+Initial version.
proto-lens-optparse.cabal view
@@ -1,5 +1,5 @@ name: proto-lens-optparse-version: 0.1.0.3+version: 0.1.0.4 synopsis: Adapting proto-lens to optparse-applicative ReadMs. description: A package adapting proto-lens to optparse-applicative ReadMs.@@ -15,11 +15,12 @@ category: Data build-type: Simple cabal-version: >=1.8+extra-source-files: Changelog.md library hs-source-dirs: src exposed-modules: Data.ProtoLens.Optparse build-depends: proto-lens >= 0.1 && < 0.3- , base >= 4.8 && < 4.10+ , base >= 4.8 && < 4.11 , optparse-applicative >= 0.12 && < 0.15 , text == 1.2.*