Skip to content

Commit

Permalink
[Release] v0.4.6.0 (#203)
Browse files Browse the repository at this point in the history
* Update README.md

* Update version
  • Loading branch information
CristhianMotoche authored Jul 5, 2022
1 parent 40647af commit a1ccbe6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.4.6.0
### Modified
* It sets the origin repository (`git remote set-url origin <repo>`) on every pushed release.

## 0.4.5.0
### Added
* New commands that let you enable/disable a maintenance mode
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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: `[email protected]`.
* `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.
Expand Down Expand Up @@ -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.
---
<img src="https://www.stackbuilders.com/media/images/Sb-supports.original.png" alt="Stack Builders" width="50%"></img>
<img src="https://www.stackbuilders.com/media/images/Sb-supports.original.png" alt="Stack Builders" width="50%"></img>
[Check out our libraries](https://github.com/stackbuilders/) | [Join our team](https://www.stackbuilders.com/join-us/)
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}:
mkDerivation {
pname = "hapistrano";
version = "0.4.5.0";
version = "0.4.6.0";
src = ./.;
isLibrary = true;
isExecutable = true;
Expand Down
2 changes: 1 addition & 1 deletion hapistrano.cabal
Original file line number Diff line number Diff line change
@@ -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:
.
Expand Down

0 comments on commit a1ccbe6

Please sign in to comment.