rubocop-on-rbs 1.4.0 → 1.4.1

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: 22a2658fe60905c8ede887f40b3bf114cd42c945194d0a968804b2f30069af9c
4
- data.tar.gz: 3922f3dd22bf0f1b2afd66c0bbf0b8f5449424c3e64dcaa976def99ecdcd47d9
3
+ metadata.gz: 8185df7a0907dbcc69788eed77f120370c29927bc893888c2e4e5abf85e08c23
4
+ data.tar.gz: de822ebde5b4d93ffc93650d8584cd08629fd72a9c4651112f5fbff2772a3652
5
5
  SHA512:
6
- metadata.gz: a690a213a8654d2a9dd28822d6b112848348340956fa7e533d727203b28db67ed8233adb997b728e9fca9bd820bc0688ab1f984eb0498b6dfa645a9165b2e575
7
- data.tar.gz: 1ffdd5f0b4305ff3158187a052cb4cd5fcce2ddf3e0629e3847699e7094741c5db66ee9962f9fc252e34d7a7f6f7a514bc32736cd4003e0377911b725b5a4a1a
6
+ metadata.gz: 2a10334c1b8d7f6ad6c86c3914917045e3ddecd7b0e45fabd6fa0034ab54831b33ec64104161c24447b8a4823b2d41ba91b4f03c52c09b60c44c5c5b6d95223d
7
+ data.tar.gz: d5aa57c92a639e18ee55d8e73c96ddcb4cda99e199048cc99f575e84f68e64c45542b21466fc7a471e46510f68215ce3497cfba5246ba8daca8579c652144ace
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [1.4.1] - 2025-02-23
4
+
5
+ * Default type params allows void by @ksss in https://github.com/ksss/rubocop-on-rbs/pull/82
6
+
7
+ ## [1.4.0] - 2025-02-23
8
+
9
+ * Bundle update by @ksss in https://github.com/ksss/rubocop-on-rbs/pull/71
10
+ * Improve will syntax error by @ksss in https://github.com/ksss/rubocop-on-rbs/pull/73
11
+ * [RBS/Lint/WillSyntaxError] Support Proc self_type by @ksss in https://github.com/ksss/rubocop-on-rbs/pull/74
12
+ * Add RBS/Lint/NewReturnsVoid by @ksss in https://github.com/ksss/rubocop-on-rbs/pull/79
13
+ * Bundle update by @ksss in https://github.com/ksss/rubocop-on-rbs/pull/80
14
+ * Enabled pending cops by @ksss in https://github.com/ksss/rubocop-on-rbs/pull/81
15
+ * Use Ruby 3.4 on CI by @ksss in https://github.com/ksss/rubocop-on-rbs/pull/72
16
+
3
17
  ## [1.3.0] - 2024-12-24
4
18
 
5
19
  * Add RBS/Lint/AmbiguousKeywordArgumentKey by @ksss in https://github.com/ksss/rubocop-on-rbs/pull/51
@@ -55,7 +55,7 @@ module RuboCop
55
55
 
56
56
  if param.respond_to?(:default_type)
57
57
  if dt = param.default_type
58
- void_type_context_validator(dt)
58
+ void_type_context_validator(dt, true)
59
59
  no_self_type_validator(dt)
60
60
  no_classish_type_validator(dt)
61
61
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module RBS
5
- VERSION = '1.4.0'
5
+ VERSION = '1.4.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-on-rbs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ksss