digest 0.0.1.5 → 0.0.1.6
raw patch · 2 files changed
+11/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- digest.cabal +7/−2
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Changelog +## 0.0.1.6 — 5th March 2023++- Introduce 'pkg-config' cabal flag (Thanks to @jonathanlking): <https://github.com/TeofilC/digest/pull/11>+ ## 0.0.1.5 — 24th Jan 2023 - Correct license field in .cabal file (Thanks to @juhp): <https://github.com/TeofilC/digest/pull/9>
digest.cabal view
@@ -1,5 +1,5 @@ name: digest-version: 0.0.1.5+version: 0.0.1.6 copyright: (c) 2009 Eugene Kirpichov license: BSD2 license-file: LICENSE@@ -25,6 +25,11 @@ testing/trivial.hs CHANGELOG.md +flag pkg-config+ default: True+ manual: True+ description: Use @pkg-config(1)@ to locate @zlib@ library.+ source-repository head type: git location: https://github.com/TeofilC/digest@@ -39,7 +44,7 @@ , bytestring >= 0.9 && < 0.12 includes: zlib.h ghc-options: -Wall- if !os(windows)+ if flag(pkg-config) && !os(windows) pkgconfig-depends: zlib else build-depends: zlib