Updated with new 0.4.5.0 version (maintenance mode) (#197)

This commit is contained in:
David Mazarro 2022-05-20 17:29:39 +02:00 committed by GitHub
parent f973b0671e
commit 9e00c107f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
## 0.4.5.0
### Added
* New commands that let you enable/disable a maintenance mode
* New configuration variables:
* `maintenance_directory:`- The name of the directory on which the maintenance file will be placed. `{deploy_path}/{maintenance_directory}`. The default directory name is `maintenance`
* `maintenance_filename:`- The name of the file that is going to be created in the maintenance_directory. It has to have the `.html` extension to be seen in the browser. `{deploy_path}/{maintenance_directory}/{maintenance_filename}`. The default filename is `maintenance.html`
## 0.4.4.0
### Added
* Ability to keep all failed releases or just one ([issue #154](https://github.com/stackbuilders/hapistrano/issues/154))

View File

@ -6,7 +6,7 @@
}:
mkDerivation {
pname = "hapistrano";
version = "0.4.4.0";
version = "0.4.5.0";
src = ./.;
isLibrary = true;
isExecutable = true;

View File

@ -1,6 +1,6 @@
cabal-version: 1.18
name: hapistrano
version: 0.4.4.0
version: 0.4.5.0
synopsis: A deployment library for Haskell applications
description:
.