Skip to content

Commit 71a492a

Browse files
authored
Release 0.15.3 and update gems (#1404)
1 parent 69b983e commit 71a492a

6 files changed

+17
-16
lines changed

.rubocop.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ AllCops:
88
SuggestExtensions: false
99
TargetRubyVersion: 2.6
1010

11-
#- Pending Cops as of 1.66.1 ---------------------------------------------#
11+
#- Pending Cops as of 1.67.0 ---------------------------------------------#
1212

1313
Gemspec/AddRuntimeDependency: # new in 1.65
1414
Enabled: true
@@ -40,6 +40,8 @@ Lint/DuplicateMatchPattern: # new in 1.50
4040
Enabled: true
4141
Lint/DuplicateRegexpCharacterClassElement: # (new in 1.1)
4242
Enabled: true
43+
Lint/DuplicateSetElement: # new in 1.67
44+
Enabled: true
4345
Lint/EmptyBlock: # (new in 1.1)
4446
Enabled: true
4547
Lint/EmptyClass: # (new in 1.3)

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Master
1+
## 0.15.3
22

33
##### Breaking
44

@@ -10,8 +10,8 @@
1010

1111
##### Bug Fixes
1212

13-
* Don't crash when the Swift 6 compiler reports educational
14-
notes.
13+
* Don't crash in SourceKitten when the Swift 6 compiler reports
14+
educational notes.
1515
[John Fairhurst](https://github.com/johnfairh)
1616
[#1399](https://github.com/realm/jazzy/issues/1399)
1717

Gemfile.lock

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ GIT
99
PATH
1010
remote: .
1111
specs:
12-
jazzy (0.15.2)
12+
jazzy (0.15.3)
1313
cocoapods (~> 1.5)
1414
mustache (~> 1.1)
1515
open4 (~> 1.3)
@@ -27,7 +27,7 @@ GEM
2727
base64
2828
nkf
2929
rexml
30-
activesupport (7.2.1)
30+
activesupport (7.2.1.1)
3131
base64
3232
bigdecimal
3333
concurrent-ruby (~> 1.0, >= 1.3.1)
@@ -156,7 +156,7 @@ GEM
156156
uri
157157
netrc (0.11.0)
158158
nkf (0.2.0)
159-
octokit (9.1.0)
159+
octokit (9.2.0)
160160
faraday (>= 1, < 3)
161161
sawyer (~> 0.9)
162162
open4 (1.3.4)
@@ -173,9 +173,9 @@ GEM
173173
rchardet (1.8.0)
174174
redcarpet (3.6.0)
175175
regexp_parser (2.9.2)
176-
rexml (3.3.7)
176+
rexml (3.3.8)
177177
rouge (4.4.0)
178-
rubocop (1.66.1)
178+
rubocop (1.67.0)
179179
json (~> 2.3)
180180
language_server-protocol (>= 3.17.0)
181181
parallel (~> 1.10)
@@ -206,19 +206,19 @@ GEM
206206
concurrent-ruby (~> 1.0)
207207
unicode-display_width (2.6.0)
208208
uri (0.13.1)
209-
webmock (3.23.1)
209+
webmock (3.24.0)
210210
addressable (>= 2.8.0)
211211
crack (>= 0.3.2)
212212
hashdiff (>= 0.4.0, < 2.0.0)
213213
xcinvoke (0.3.0)
214214
liferaft (~> 0.0.6)
215-
xcodeproj (1.25.0)
215+
xcodeproj (1.25.1)
216216
CFPropertyList (>= 2.3.3, < 4.0)
217217
atomos (~> 0.1.3)
218218
claide (>= 1.0.2, < 2.0)
219219
colored2 (~> 3.1)
220220
nanaimo (~> 0.3.0)
221-
rexml (>= 3.3.2, < 4.0)
221+
rexml (>= 3.3.6, < 4.0)
222222

223223
PLATFORMS
224224
ruby

lib/jazzy/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Jazzy
4-
VERSION = '0.15.2' unless defined? Jazzy::VERSION
4+
VERSION = '0.15.3' unless defined? Jazzy::VERSION
55
end

lib/jazzy/source_declaration.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def objc_category_name
9898
end
9999

100100
def swift_objc_extension?
101-
type.swift_extension? && usr && usr.start_with?('c:objc')
101+
type.swift_extension? && usr&.start_with?('c:objc')
102102
end
103103

104104
def swift_extension_objc_name

lib/jazzy/sourcekitten.rb

+1-2
Original file line numberDiff line numberDiff line change
@@ -826,8 +826,7 @@ def self.reject_inaccessible_extensions(typedecl, extensions)
826826
# type itself, the type must be private and the extensions
827827
# should be rejected.
828828
if !typedecl &&
829-
wanted_exts.first &&
830-
wanted_exts.first.type_from_doc_module?
829+
wanted_exts.first&.type_from_doc_module?
831830
unwanted_exts += wanted_exts
832831
wanted_exts = []
833832
end

0 commit comments

Comments
 (0)