File tree 3 files changed +7
-18
lines changed
3 files changed +7
-18
lines changed Original file line number Diff line number Diff line change 2
2
3
3
---
4
4
5
- ## Stable Branch
5
+ ## 6.6.0
6
6
7
- ### Breaking Changes
7
+ ### Changes in core dependencies of SwiftGenPlugin
8
8
9
- _ None_
10
-
11
- ### New Features
12
-
13
- _ None_
14
-
15
- ### Bug Fixes
16
-
17
- _ None_
18
-
19
- ### Internal Changes
20
-
21
- _ None_
9
+ * [ SwiftGen 6.6.0] ( https://github.com/SwiftGen/SwiftGen/blob/6.6.0/CHANGELOG.md )
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ let package = Package(
29
29
) ,
30
30
. binaryTarget(
31
31
name: " swiftgen " ,
32
- url: " https://github.com/SwiftGen/SwiftGen/releases/download/6.6.0-prerelease /swiftgen-6.6.0.artifactbundle.zip " ,
33
- checksum: " b178d7c60fe88af6f67e951336ed00cd2eef56040974f3700c02d31500bb3da7 "
32
+ url: " https://github.com/SwiftGen/SwiftGen/releases/download/6.6.0/swiftgen-6.6.0.artifactbundle.zip " ,
33
+ checksum: " 1f6f4739df2e3299a07682859f4c72c5e18b66a553f329f9cd3a8cfbcfa21917 "
34
34
)
35
35
]
36
36
)
Original file line number Diff line number Diff line change @@ -55,7 +55,8 @@ namespace :changelog do
55
55
desc 'Add links to other CHANGELOGs in the topmost SwiftGen CHANGELOG entry'
56
56
task :links do
57
57
changelog = File . read ( 'CHANGELOG.md' )
58
- abort ( 'Links seems to already exist for latest version entry' ) if /^### (.*)/ . match ( changelog ) [ 1 ] == LINKS_SECTION_TITLE
58
+ topmost = /^### (.*)/ . match ( changelog ) || [ '' , '' ]
59
+ abort ( 'Links seems to already exist for latest version entry' ) if topmost [ 1 ] == LINKS_SECTION_TITLE
59
60
links = linked_changelogs (
60
61
swiftgen : Utils . swiftgen_version
61
62
)
You can’t perform that action at this time.
0 commit comments