Skip to content

Commit

Permalink
Release 0.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gsamokovarov committed Apr 8, 2019
1 parent 27e46a1 commit c1aed6d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions 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.22.0
VERSION = 0.23.0

.PHONY: build
build:
Expand All @@ -31,7 +31,7 @@ clean:
@rm -f jump*

.PHONY: pkg
pkg: clean pkg.deb pkg.rpm pkg.linux
pkg: clean pkg.deb pkg.rpm pkg.linux pkg.linux.arm

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

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

### Red Hat/Fedora

```bash
wget https://github.com/gsamokovarov/jump/releases/download/v0.22.0/jump-0.22.0-1.x86_64.rpm
sudo rpm -i jump-0.22.0-1.x86_64.rpm
wget https://github.com/gsamokovarov/jump/releases/download/v0.23.0/jump-0.23.0-1.x86_64.rpm
sudo rpm -i jump-0.23.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.22.0"
const version = "0.23.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.22.0
// 0.23.0
}

0 comments on commit c1aed6d

Please sign in to comment.