Skip to content

Commit aba73b8

Browse files
authored
Upgrade version (#62)
1 parent a624a2c commit aba73b8

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subilo"
3-
version = "0.0.1"
3+
version = "0.1.2"
44
description = "Tiny deployment agent"
55
authors = ["gillchristian <[email protected]>", "ndelvalle <[email protected]>"]
66
edition = "2018"

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ curl -X POST 'https://subilo.yourdomain.com/webhook' \
4343
### Install script
4444

4545
```
46-
curl -s -L https://raw.githubusercontent.com/Huemul/subilo/master/install.sh | bash
46+
curl -s -L https://raw.githubusercontent.com/huemul/subilo/master/install.sh | bash
4747
```
4848

49-
This command runs the [install script](https://github.com/Huemul/subilo/blob/master/install.sh).
49+
This command runs the [install script](https://github.com/huemul/subilo/blob/master/install.sh).
5050
The script downloads the latest Subilo release and attempts to add the Subilo bin
5151
path to the `$PATH` variable in the correct profile file (`~/.profile`, `~/.bashrc`,
5252
`~/.bash_profile`, `~/.zshrc` or `~/.config/fish/config.fish`)
@@ -59,11 +59,11 @@ $ cargo install subilo
5959

6060
### Manually
6161

62-
Download the latest [released binary](https://github.com/Huemul/subilo/releases)
62+
Download the latest [released binary](https://github.com/huemul/subilo/releases)
6363
and add executable permissions:
6464

6565
```
66-
$ wget -O subilo "https://github.com/Huemul/subilo/releases/download/v0.0.1/subilo-x86-64-linux"
66+
$ wget -O subilo "https://github.com/huemul/subilo/releases/download/v0.0.2/subilo-x86-64-linux"
6767
$ chmod +x subilo
6868
```
6969

@@ -99,7 +99,7 @@ SUBCOMMANDS:
9999
### Configuration
100100

101101
Create a `.subilorc` file with the required configuration to deploy projects.
102-
A `.subilorc` example can be found [here](https://github.com/Huemul/subilo/blob/master/sample.subilorc).
102+
A `.subilorc` example can be found [here](https://github.com/huemul/subilo/blob/master/sample.subilorc).
103103

104104
### Start
105105

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ red="\033[31m"
88
green="\033[32m"
99
cyan="\033[36m"
1010

11-
DOWNLOAD_URL="https://github.com/Huemul/subilo/releases/download/alpha_v5/subilo-x86-64-linux"
11+
DOWNLOAD_URL="https://github.com/huemul/subilo/releases/download/v0.0.2/subilo-x86-64-linux"
1212

1313
# the following function was brought from https://yarnpkg.com/install.sh
1414
# https://github.com/yarnpkg/yarn/blob/master/LICENSE

0 commit comments

Comments
 (0)