From eb0a81f7a2e598f1c3339ed3cb2c937a231f87b3 Mon Sep 17 00:00:00 2001 From: TorchedSammy <38820196+TorchedSammy@users.noreply.github.com> Date: Thu, 17 Mar 2022 20:56:19 -0400 Subject: [PATCH] chore: prepare for v1.1.0 release --- CHANGELOG.md | 17 +++++++++++++++++ vars.go | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2a28ca..f766138 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # 🎀 Changelog +## [1.1.0] - 2021-03-17 +### Added +- `hilbish.vimAction` hook (`doc vimMode actions`) +- `command.not-executable` hook (will replace `command.no-perm` in a future release) + +### Fixed +- Check if interactive before adding to history +- Escape in vim mode exits all modes and not only insert +- Make 2nd line in prompt empty if entire prompt is 1 line +- Completion menu doesnt appear if there is only 1 result +- Ignore SIGQUIT, which caused a panic unhandled +- Remove hostname in greeting on Windows +- Handle PATH binaries properly on Windows +- Fix removal of dot in the beginning of folders/files that have them for file complete +- Fix prompt being set to the continue prompt even when exited + ## [1.0.4] - 2021-03-12 ### Fixed - Panic when history directory doesn't exist @@ -392,6 +408,7 @@ This input for example will prompt for more input to complete: First "stable" release of Hilbish. +[1.1.0]: https://github.com/Rosettea/Hilbish/compare/v1.0.4...v1.1.0 [1.0.4]: https://github.com/Rosettea/Hilbish/compare/v1.0.3...v1.0.4 [1.0.3]: https://github.com/Rosettea/Hilbish/compare/v1.0.2...v1.0.3 [1.0.2]: https://github.com/Rosettea/Hilbish/compare/v1.0.1...v1.0.2 diff --git a/vars.go b/vars.go index 3c94a4a..cda8f84 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 = "v1.0.4" + version = "v1.1.0" defaultConfDir = "" // ~ will be substituted for home, path for user's default config defaultHistDir = "" commonRequirePaths = "';./libs/?/init.lua;./?/init.lua;./?/?.lua'"