Skip to content

Commit

Permalink
Release 0.30.1
Browse files Browse the repository at this point in the history
`jump --version` used to output `0.23.0`. Fix it with a minor version
bump.
  • Loading branch information
gsamokovarov committed Jan 31, 2020
1 parent d635d0b commit 9873065
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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.30.0
VERSION = 0.30.1

.PHONY: build
build:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Jump comes in packages for the following platforms.
| Platform | Command |
| --- | --- |
| macOS | `brew install jump` |
| Ubuntu | `wget https://github.com/gsamokovarov/jump/releases/download/v0.30.0/jump_0.30.0_amd64.deb && sudo dpkg -i jump_0.30.0_amd64.deb` |
| Fedora | `wget https://github.com/gsamokovarov/jump/releases/download/v0.30.0/jump-0.30.0-1.x86_64.rpm && sudo rpm -i jump-0.30.0-1.x86_64.rpm` |
| Ubuntu | `wget https://github.com/gsamokovarov/jump/releases/download/v0.30.1/jump_0.30.1_amd64.deb && sudo dpkg -i jump_0.30.1_amd64.deb` |
| Fedora | `wget https://github.com/gsamokovarov/jump/releases/download/v0.30.1/jump-0.30.1-1.x86_64.rpm && sudo rpm -i jump-0.30.1-1.x86_64.rpm` |
| Nix | `nix-env -iA nixpkgs.jump` |
| Go | `go get github.com/gsamokovarov/jump` |

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.23.0"
const version = "0.30.1"

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.23.0
// 0.30.1
}

0 comments on commit 9873065

Please sign in to comment.