hapistrano 0.4.1.2 → 0.4.1.3
raw patch · 4 files changed
+22/−4 lines, 4 filesdep ~formattingPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: formatting
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- README.md +15/−0
- app/Main.hs +1/−1
- hapistrano.cabal +2/−3
CHANGELOG.md view
@@ -1,3 +1,7 @@+## 0.4.1.3+### Changed+* Allow formatting-7.0+ ## 0.4.1.2 ### Changed * Allow optparse-applicative-0.16.0.0
README.md view
@@ -2,6 +2,21 @@ [](http://hackage.haskell.org/package/hapistrano) [](https://hub.docker.com/r/stackbuilders/hapistrano) +# Table of Contents++ * [Hapistrano](#hapistrano)+ * [Purpose](#purpose)+ * [How it Works](#how-it-works)+ * [Usage](#usage)+ * [Environment Variables](#environment-variables)+ * [What to do when compiling on server is not viable](#what-to-do-when-compiling-on-server-is-not-viable)+ * [Deploying to multiple machines concurrently](#deploying-to-multiple-machines-concurrently)+ * [Docker](#docker)+ * [Nix](#nix)+ * [License](#license)+ * [Contributing](#contributing)+ + # Hapistrano Hapistrano is a deployment library for Haskell applications similar to
app/Main.hs view
@@ -11,7 +11,7 @@ import Data.Version (showVersion) import qualified Data.Yaml.Config as Yaml import Development.GitRev-import Formatting+import Formatting (formatToString, string, (%)) import Numeric.Natural import Options.Applicative hiding (str) import Path
hapistrano.cabal view
@@ -1,5 +1,5 @@ name: hapistrano-version: 0.4.1.2+version: 0.4.1.3 synopsis: A deployment library for Haskell applications description: .@@ -57,7 +57,6 @@ , ansi-terminal >= 0.9 && < 0.12 , base >= 4.8 && < 5.0 , filepath >= 1.2 && < 1.5- , formatting >= 6.2 && < 7.0 , gitrev >= 1.2 && < 1.4 , mtl >= 2.0 && < 3.0 , stm >= 2.0 && < 2.6@@ -80,7 +79,7 @@ build-depends: aeson >= 0.11 && < 1.6 , async >= 2.0.1.6 && < 2.4 , base >= 4.8 && < 5.0- , formatting >= 6.2 && < 7.0+ , formatting >= 6.2 && < 8.0 , gitrev >= 1.2 && < 1.4 , hapistrano , optparse-applicative >= 0.11 && < 0.17