diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d8a94a..070aa9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # 🎀 Changelog -## Unreleased +## [1.0.0] - 2021-03-04 ### Added - MacOS is now officialy supported, default compile time vars have been added for it @@ -18,6 +18,7 @@ it finds the path to `binName` in $PATH (like it always was) or Vim via `hilbish.inputMode()` - Changing Vim mode throws a `hilbish.vimMode` hook - The current Vim mode is also accessible with the `hilbish.vimMode` property +- Print errors in `hilbish.timeout()` and `hilbish.goro()` callbacks ### Fixed - Tab completion for executables @@ -341,6 +342,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.1...v1.0.0 [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 diff --git a/vars.go b/vars.go index 07d25a7..47ebd8c 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.1" + version = "v1.0.0" defaultConfDir = "" // ~ will be substituted for home, path for user's default config defaultHistDir = "" commonRequirePaths = "';./libs/?/init.lua;./?/init.lua;./?/?.lua'"