standard 1.25.4 → 1.25.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 67c3210797cdb4dfc86ebfe31b828aea710d685adf1e8d3cc0c8f34df8caef72
4
- data.tar.gz: d2b1637d2012c4cef0f194c6f2316f12d9bedc8c4ea4b05fa0fc4e7af5ba81b0
3
+ metadata.gz: 9dd3dd8a74fc215df752f020ed7b5e29f831592bc15cccc3b6c8d8a256bfbee1
4
+ data.tar.gz: c914ab5a31d00ca0dd0ff6f483f2364b1a885d97988c3df38d169ef3c1edf5f8
5
5
  SHA512:
6
- metadata.gz: 8932fa0aee54a3143bcc56a77ce828888101089c5f6ac515b5eb2a8c1486ef05a61aace572c5c4c320b56b0f0d874c8b8b031296d46d2fd193073ff1dd7d6dd5
7
- data.tar.gz: 724a15814a9d1170ab775e6b6b8ab057a972b229b6457cc1be8f03db98c49e0679ff119d1f5f6b8ffd99a11089052c389220eb6f7e4de06f1503975115ab7c6f
6
+ metadata.gz: 60960dec029698d932669cc588558bce61cf0f58fec3eea09659d04a0c4d3b5708d7b6e055b652eb0cd46ea5c5c253685107df110212a48fc48ae13d78cc030e
7
+ data.tar.gz: d2d277d165b146c517837384d9519f044c3661f0499198189404ca9e9630065e774e7a3760f57f7f25e0648836558104c64e286f35163bc8e0d2460da3c20c9e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.25.5
4
+
5
+ * Temporarily disable registration of `executeCommand` to prevent conflict with
6
+ the VS Code extension's client-side registration of the same name
7
+ [#544](https://github.com/testdouble/standard/pull/544)
8
+
3
9
  ## 1.25.4
4
10
 
5
11
  * Bring the LSP Server's executeCommand capabilities in line with the spec
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- standard (1.25.4)
4
+ standard (1.25.5)
5
5
  language_server-protocol (~> 3.17.0.2)
6
6
  rubocop (~> 1.48.1)
7
7
  rubocop-performance (~> 1.16.0)
@@ -28,9 +28,6 @@ module Standard
28
28
  capabilities: Proto::Interface::ServerCapabilities.new(
29
29
  document_formatting_provider: true,
30
30
  diagnostic_provider: true,
31
- execute_command_provider: Proto::Interface::ExecuteCommandOptions.new(
32
- commands: ["standardRuby.formatAutoFixes"]
33
- ),
34
31
  text_document_sync: Proto::Interface::TextDocumentSyncOptions.new(
35
32
  change: Proto::Constant::TextDocumentSyncKind::FULL,
36
33
  open_close: true
@@ -1,3 +1,3 @@
1
1
  module Standard
2
- VERSION = Gem::Version.new("1.25.4")
2
+ VERSION = Gem::Version.new("1.25.5")
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standard
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.25.4
4
+ version: 1.25.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Searls
@@ -139,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
139
139
  - !ruby/object:Gem::Version
140
140
  version: '0'
141
141
  requirements: []
142
- rubygems_version: 3.4.6
142
+ rubygems_version: 3.4.10
143
143
  signing_key:
144
144
  specification_version: 4
145
145
  summary: Ruby Style Guide, with linter & automatic code fixer