From c027e924ed9aa8018517e595181cb6032134a652 Mon Sep 17 00:00:00 2001 From: Caleb Figgers Date: Fri, 4 Oct 2024 21:17:15 -0500 Subject: [PATCH] Update README and CHANGELOG for v0.0.9 --- CHANGELOG.md | 8 ++++++++ README.md | 11 +++++++++++ 2 files changed, 19 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86d2606..6ccee3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 0.0.9 (Oct 4, 2024) + - Upgraded inline evaluation feature + - New "Evaluate top level expression" command (bound by default to `alt+shift+e`) + - No longer loses cursor position when evaluating expressions + - Evaluated expressions are highlighted green; reen highlight remains until edits are made (even if cursor navigates away) + - Overhauled syntax highlighting + - Now distinguish visually between builtins and macros + ## 0.0.8 (Sep 12, 2023) - Fixed broken f-string reformatting diff --git a/README.md b/README.md index 85e1160..d30d516 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,17 @@ Planned features: 2. Clone this repo within that directory (e.g. `git clone https://www.github.com/hylang/vscode-hy`) 3. Reload or relaunch any open VS Code/VS Codium windows +## Latest Update + +### 0.0.9 (Oct 4, 2024) + +- Upgraded inline evaluation feature + - New "Evaluate top level expression" command (bound by default to `alt+shift+e`) + - No longer loses cursor position when evaluating expressions + - Evaluated expressions are highlighted green; reen highlight remains until edits are made (even if cursor navigates away) +- Overhauled syntax highlighting + - Now distinguish visually between builtins and macros + ## Contribution Issues and pull requests welcome.