rubocop-gradual 0.3.3 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ad8fc07a5efc9411a388f7fd1eab366bacd44466ea7d268596b22d2c8a42522c
4
- data.tar.gz: 618f6421cca7465ec6b3bfa08fd0a97eda8cf642c605ec8010a944f406d7b8bd
3
+ metadata.gz: 03f450cd4cc7123b6c7bf7b393cab547f36ea8c38bff64ff5468a8d50e7590c8
4
+ data.tar.gz: 4abbd0ba12b43d4db80203315bbfc4d2cd9fc120e30d0659a32bcd62278b1087
5
5
  SHA512:
6
- metadata.gz: 14a9f2ae2e16a42171257db3d466eb99228e2a094c4e453725a3e07136f09a6d028bd080e158da47efbdbd012e57e8641ee259ff296df388f8515e3da14cbc23
7
- data.tar.gz: f8c0d7a36a2f616893bbcdc681f775989b3b376ecdacc6383bdb8ca417fd08b82f06d9f19955b3c2decbb32d4f159fb2957f47b0a518ae22fb29f48e11fa4f4c
6
+ metadata.gz: a4a1ebecba028f66d5b646bfe36c62e01ac5d45e9a31ffab5cb01b12ff90023333dbcd61c58dc427090e6f095e9ee658284c8bab714cacbcf0c52eabad8b9f75
7
+ data.tar.gz: 2a04f09d401e024597bc255cb9897f1b76fe62ac0b2395a665951b49f019e531273335564e8481791b480597278370924de474eca0a45dacf708a71fac8674da
data/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning].
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.3.4] - 2023-10-26
11
+
12
+ ### Fixed
13
+
14
+ - Use JSON.dump instead of to_json for stable results encoding. ([@skryukov])
15
+
10
16
  ## [0.3.3] - 2023-10-18
11
17
 
12
18
  ### Fixed
@@ -99,7 +105,8 @@ RuboCop::Gradual::RakeTask.new
99
105
 
100
106
  [@skryukov]: https://github.com/skryukov
101
107
 
102
- [Unreleased]: https://github.com/skryukov/rubocop-gradual/compare/v0.3.3...HEAD
108
+ [Unreleased]: https://github.com/skryukov/rubocop-gradual/compare/v0.3.4...HEAD
109
+ [0.3.4]: https://github.com/skryukov/rubocop-gradual/compare/v0.3.3...v0.3.4
103
110
  [0.3.3]: https://github.com/skryukov/rubocop-gradual/compare/v0.3.2...v0.3.3
104
111
  [0.3.2]: https://github.com/skryukov/rubocop-gradual/compare/v0.3.1...v0.3.2
105
112
  [0.3.1]: https://github.com/skryukov/rubocop-gradual/compare/v0.3.0...v0.3.1
@@ -20,7 +20,7 @@ module RuboCop
20
20
  end
21
21
 
22
22
  def to_s
23
- "[#{[line, column, length, message.to_json, code_hash].join(", ")}]"
23
+ "[#{[line, column, length, JSON.dump(message), code_hash].join(", ")}]"
24
24
  end
25
25
 
26
26
  def ==(other)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module Gradual
5
- VERSION = "0.3.3"
5
+ VERSION = "0.3.4"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-gradual
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Svyatoslav Kryukov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-10-18 00:00:00.000000000 Z
11
+ date: 2023-10-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: diff-lcs