From c329d21e7d6d3c072d14f0a89322fef539bd22bc Mon Sep 17 00:00:00 2001 From: TorchedSammy <38820196+TorchedSammy@users.noreply.github.com> Date: Mon, 22 Nov 2021 22:54:20 -0500 Subject: [PATCH] chore: make changelogs and bump for 0.7.1 --- CHANGELOG.md | 6 ++++++ vars.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index acdc79e..0c1d3a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ This is the changelog for the Hilbish shell made in Go and Lua. +## [0.7.1] - 2021-11-22 +### Fixed +- Tab complete absolute paths to binaries properly +- Allow execution of absolute paths to binaries (https://github.com/Rosettea/Hilbish/commit/06272778f85dad04e0e7abffc78a5b9b0cebd067 regression) + ## [0.7.0] - 2021-11-22 ### Added - `hilbish.interactive` and `hilbish.login` properties to figure out if Hilbish is interactive or a login shell, respectively. @@ -284,6 +289,7 @@ This input for example will prompt for more input to complete: First "stable" release of Hilbish. +[0.7.1]: https://github.com/Rosettea/Hilbish/compare/v0.7.0...v0.7.1 [0.7.0]: https://github.com/Rosettea/Hilbish/compare/v0.6.1...v0.7.0 [0.6.1]: https://github.com/Rosettea/Hilbish/compare/v0.6.0...v0.6.1 [0.6.0]: https://github.com/Rosettea/Hilbish/compare/v0.5.1...v0.6.0 diff --git a/vars.go b/vars.go index 6389626..1ceb24c 100644 --- a/vars.go +++ b/vars.go @@ -2,7 +2,7 @@ package main // String vars that are free to be changed at compile time var ( - version = "v0.7.0" + version = "v0.7.1" defaultConfDir = "" // ~ will be substituted for home, path for user's default config defaultHistDir = "" commonRequirePaths = "';./libs/?/init.lua;./?/init.lua;./?/?.lua'"