diff --git a/CHANGELOG.md b/CHANGELOG.md index e427d374..b2638c0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.24.0 + +* Improve `--lsp` server to better support the commands used by VS Code + ## 1.23.0 * Update rubocop from 1.42.0 to [1.44.1](https://github.com/rubocop/rubocop/releases/tag/v1.44.1) diff --git a/Gemfile.lock b/Gemfile.lock index 970ce3f9..089db11e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - standard (1.23.0) + standard (1.24.0) language_server-protocol (~> 3.17.0.2) rubocop (= 1.44.1) rubocop-performance (= 1.15.2) @@ -28,7 +28,7 @@ GEM method_source (~> 1.0) rainbow (3.1.1) rake (13.0.6) - regexp_parser (2.6.2) + regexp_parser (2.7.0) rexml (3.2.5) rubocop (1.44.1) json (~> 2.3) diff --git a/lib/standard/version.rb b/lib/standard/version.rb index 57ce46be..59ccf7d1 100644 --- a/lib/standard/version.rb +++ b/lib/standard/version.rb @@ -1,3 +1,3 @@ module Standard - VERSION = Gem::Version.new("1.23.0") + VERSION = Gem::Version.new("1.24.0") end