diff --git a/CHANGELOG.md b/CHANGELOG.md index c2f38358..5733b0b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 1.41.1 + +* Adds a stub method to the Ruby LSP add-on to avoid a potential runtime exception +for range formatting requests [#655](https://github.com/standardrb/standard/pull/655) + ## 1.41.0 * Updates rubocop to [1.66.1](https://github.com/rubocop/rubocop/releases/tag/v1.66.1) diff --git a/Gemfile.lock b/Gemfile.lock index 86ba050b..1bb14074 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - standard (1.41.0) + standard (1.41.1) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) rubocop (~> 1.66.0) diff --git a/lib/standard/version.rb b/lib/standard/version.rb index ae521154..72f52343 100644 --- a/lib/standard/version.rb +++ b/lib/standard/version.rb @@ -1,3 +1,3 @@ module Standard - VERSION = Gem::Version.new("1.41.0") + VERSION = Gem::Version.new("1.41.1") end