diff --git a/changelog.md b/changelog.md index 1c2700c..564bd4c 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Changelog -## UNRELEASED / ??? +## 0.2.0 / 2025-06-03 ### Features @@ -19,7 +19,6 @@ * Add lint for replacing `match` with `case` when possible. * Ignore unused locals if they end in underscore. * Settings file: `flsproject.fnl`. Settings are now editor agnostic. -* Support `:intersection` as a Lua version; only includes globals present in every Lua. * Support better completions. The eglot client is no longer a special case. ### Changes diff --git a/src/fennel-ls/utils.fnl b/src/fennel-ls/utils.fnl index 1f4b862..70fb9d6 100644 --- a/src/fennel-ls/utils.fnl +++ b/src/fennel-ls/utils.fnl @@ -5,7 +5,7 @@ These functions are all pure functions, which makes me happy." (local fennel (require :fennel)) -(local version :0.2.0-dev) +(local version "0.2.0") (λ next-line [str ?from] "Find the start of the next line from a given byte offset, or from the start of the string."