diff --git a/CHANGELOG.md b/CHANGELOG.md index b9ef9957..e63847da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.4.6.0 +### Modified +* It sets the origin repository (`git remote set-url origin `) on every pushed release. + ## 0.4.5.0 ### Added * New commands that let you enable/disable a maintenance mode diff --git a/README.md b/README.md index b9566869..e35d0d42 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ typically looks like this: ```yaml deploy_path: '/var/projects/my-project' -host: myserver.com +host: user@myserver.com port: 2222 # To perform version control operations repo: 'https://github.com/stackbuilders/hapistrano.git' @@ -83,7 +83,8 @@ The following parameters are required: The following parameters are *optional*: * `host` — the target host, if missing, `localhost` will be assumed (which - is useful for testing and playing with `hap` locally). + is useful for testing and playing with `hap` locally). You can specify the + user that is going to connect to the server here. Example: `user@server.com`. * `port` — SSH port number to use. If missing, 22 will be used. * `shell` — Shell to use. Currently supported: `zsh` ans `bash`. If missing, `Bash` will be used. * `ssh_args` — Optional ssh arguments. Only `-p` is passed via the `port` variable. @@ -283,5 +284,5 @@ MIT, see [the LICENSE file](LICENSE). Do you want to contribute to this project? Please take a look at our [contributing guideline](/docs/CONTRIBUTING.md) to know how you can help us build it. --- -Stack Builders +Stack Builders [Check out our libraries](https://github.com/stackbuilders/) | [Join our team](https://www.stackbuilders.com/join-us/) diff --git a/default.nix b/default.nix index c732b821..11696246 100644 --- a/default.nix +++ b/default.nix @@ -6,7 +6,7 @@ }: mkDerivation { pname = "hapistrano"; - version = "0.4.5.0"; + version = "0.4.6.0"; src = ./.; isLibrary = true; isExecutable = true; diff --git a/hapistrano.cabal b/hapistrano.cabal index d534365e..eff36ba4 100644 --- a/hapistrano.cabal +++ b/hapistrano.cabal @@ -1,6 +1,6 @@ cabal-version: 1.18 name: hapistrano -version: 0.4.5.0 +version: 0.4.6.0 synopsis: A deployment library for Haskell applications description: .