From 552b03b983c18d7db5053350711bef9088cc9110 Mon Sep 17 00:00:00 2001 From: Phil Hagelberg Date: Tue, 3 Jun 2025 21:24:42 -0700 Subject: [PATCH] Release 0.2.0 --- changelog.md | 3 +-- src/fennel-ls/utils.fnl | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) 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."