diff --git a/CHANGELOG.md b/CHANGELOG.md index cc4f0741..f0f3e5e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 1.39.1 + +* Fix LSP when `format` is set [#638](https://github.com/standardrb/standard/issues/638) +* Fix LSP when todo is present (I think) [vscode-standard-ruby#26](https://github.com/standardrb/vscode-standard-ruby/issues/26) + ## 1.39.0 * Add support for LSP Code Actions / Quick Fix under Ruby LSP [#636](https://github.com/standardrb/standard/pull/636) diff --git a/Gemfile.lock b/Gemfile.lock index 498abef7..5d29154e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - standard (1.39.0) + standard (1.39.1) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) rubocop (~> 1.64.0) diff --git a/lib/standard/version.rb b/lib/standard/version.rb index bb747200..374a7768 100644 --- a/lib/standard/version.rb +++ b/lib/standard/version.rb @@ -1,3 +1,3 @@ module Standard - VERSION = Gem::Version.new("1.39.0") + VERSION = Gem::Version.new("1.39.1") end