diff --git a/CHANGELOG.md b/CHANGELOG.md index 908d36f7..3f66eaad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,16 @@ ## Unreleased +## 1.38.0 + * Update minimum Ruby version to 3.0 +* @koic backported a line column bug in our LSP + [#635](https://github.com/standardrb/standard/pull/635) +* Implement a basic [Ruby LSP +add-on](https://github.com/Shopify/ruby-lsp/blob/main/ADDONS.md), which means +users would no longer need to install [our custom VS Code +extension](https://marketplace.visualstudio.com/items?itemName=testdouble.vscode-standard-ruby) +[#630](https://github.com/standardrb/standard/pull/630) ## 1.37.0 diff --git a/Gemfile.lock b/Gemfile.lock index 3a70df62..cd48bb47 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - standard (1.37.0) + standard (1.38.0) 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 ad7d1c62..2d6aed63 100644 --- a/lib/standard/version.rb +++ b/lib/standard/version.rb @@ -1,3 +1,3 @@ module Standard - VERSION = Gem::Version.new("1.37.0") + VERSION = Gem::Version.new("1.38.0") end