Skip to content

Commit

Permalink
Release 0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gsamokovarov committed Jul 20, 2018
1 parent 00652ba commit d0ea104
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ HOMEPAGE = https://github.com/gsamokovarov/jump
AUTHOR = "Genadi Samokovarov"
LICENSE = MIT

VERSION = 0.19.0
VERSION = 0.20.0

.PHONY: build
build:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,15 +157,15 @@ brew install jump
### Ubuntu/Debian

```bash
wget https://github.com/gsamokovarov/jump/releases/download/v0.19.0/jump_0.19.0_amd64.deb
sudo dpkg -i jump_0.19.0_amd64.deb
wget https://github.com/gsamokovarov/jump/releases/download/v0.20.0/jump_0.20.0_amd64.deb
sudo dpkg -i jump_0.20.0_amd64.deb
```

### Red Hat/Fedora

```bash
wget https://github.com/gsamokovarov/jump/releases/download/v0.19.0/jump-0.19.0-1.x86_64.rpm
sudo rpm -i jump-0.19.0-1.x86_64.rpm
wget https://github.com/gsamokovarov/jump/releases/download/v0.20.0/jump-0.20.0-1.x86_64.rpm
sudo rpm -i jump-0.20.0-1.x86_64.rpm
```

### Go
Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"github.com/gsamokovarov/jump/config"
)

const version = "0.19.0"
const version = "0.20.0"

func versionCmd(cli.Args, config.Config) error {
cli.Outf("%s\n", version)
Expand Down
2 changes: 1 addition & 1 deletion cmd/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ func Example_versionCmd() {
_ = versionCmd(cli.Args{}, nil)

// Output:
// 0.19.0
// 0.20.0
}

0 comments on commit d0ea104

Please sign in to comment.