hakyll-process 0.0.2.0 → 0.0.3.0
raw patch · 2 files changed
+11/−2 lines, 2 filesdep ~bytestringPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: bytestring
API changes (from Hackage documentation)
Files
- CHANGELOG.md +9/−0
- hakyll-process.cabal +2/−2
CHANGELOG.md view
@@ -5,6 +5,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.0.3.0] - 2020-09-16+### Changed+- Bumped `bytestring` dependency++## [0.0.2.0] - 2020-10-16+### Added+- More docs+- Exposed `unsafeExecCompiler`+ ## [0.0.1.0] - 2020-10-15 ### Added
hakyll-process.cabal view
@@ -1,5 +1,5 @@ name: hakyll-process-version: 0.0.2.0+version: 0.0.3.0 synopsis: Hakyll compiler for arbitrary external processes. description: Exposes Hakyll compilers for passing file paths to external processes. Transformed results are made available as Hakyll `Items`.@@ -18,7 +18,7 @@ hs-source-dirs: src exposed-modules: Hakyll.Process build-depends: base >= 4.7 && < 5- , bytestring >= 0.10.10.1 && < 0.10.11+ , bytestring >= 0.10 && < 0.12 , hakyll >= 4.12 && < 5 , typed-process >= 0.2.3 && < 0.3 default-language: Haskell2010