Skip to content

Commit 24b7a10

Browse files
committed
SwiftGen 6.6.0
1 parent 51bdcbe commit 24b7a10

File tree

3 files changed

+7
-18
lines changed

3 files changed

+7
-18
lines changed

CHANGELOG.md

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,8 @@
22

33
---
44

5-
## Stable Branch
5+
## 6.6.0
66

7-
### Breaking Changes
7+
### Changes in core dependencies of SwiftGenPlugin
88

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)

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ let package = Package(
2929
),
3030
.binaryTarget(
3131
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"
3434
)
3535
]
3636
)

rakelib/changelog.rake

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ namespace :changelog do
5555
desc 'Add links to other CHANGELOGs in the topmost SwiftGen CHANGELOG entry'
5656
task :links do
5757
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
5960
links = linked_changelogs(
6061
swiftgen: Utils.swiftgen_version
6162
)

0 commit comments

Comments
 (0)