diff --git a/CHANGELOG.md b/CHANGELOG.md index db67992..4211483 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## Release 0.1.6 + +Change installation method, don't rely on sourcing the script manually, +but utilize the vendor directories in fish. + ## Release 0.1.5 - Fix fry install rubies parser for `ruby-install`. diff --git a/Makefile b/Makefile index e0e3307..5c1d1fa 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ NAME=fry -VERSION=0.1.5 +VERSION=0.1.6 AUTHOR=terlar URL=https://github.com/$(AUTHOR)/$(NAME) diff --git a/functions/fry-version.fish b/functions/fry-version.fish index f675ac8..d36a9d4 100644 --- a/functions/fry-version.fish +++ b/functions/fry-version.fish @@ -1,3 +1,3 @@ function fry-version --description 'Display the current version of fry' - echo '0.1.5' + echo '0.1.6' end