Skip to content

Commit

Permalink
SwiftGen 6.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
djbe committed Jul 31, 2022
1 parent 51bdcbe commit 24b7a10
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 18 deletions.
18 changes: 3 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,8 @@

---

## Stable Branch
## 6.6.0

### Breaking Changes
### Changes in core dependencies of SwiftGenPlugin

_None_

### New Features

_None_

### Bug Fixes

_None_

### Internal Changes

_None_
* [SwiftGen 6.6.0](https://github.com/SwiftGen/SwiftGen/blob/6.6.0/CHANGELOG.md)
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ let package = Package(
),
.binaryTarget(
name: "swiftgen",
url: "https://github.com/SwiftGen/SwiftGen/releases/download/6.6.0-prerelease/swiftgen-6.6.0.artifactbundle.zip",
checksum: "b178d7c60fe88af6f67e951336ed00cd2eef56040974f3700c02d31500bb3da7"
url: "https://github.com/SwiftGen/SwiftGen/releases/download/6.6.0/swiftgen-6.6.0.artifactbundle.zip",
checksum: "1f6f4739df2e3299a07682859f4c72c5e18b66a553f329f9cd3a8cfbcfa21917"
)
]
)
3 changes: 2 additions & 1 deletion rakelib/changelog.rake
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ namespace :changelog do
desc 'Add links to other CHANGELOGs in the topmost SwiftGen CHANGELOG entry'
task :links do
changelog = File.read('CHANGELOG.md')
abort('Links seems to already exist for latest version entry') if /^### (.*)/.match(changelog)[1] == LINKS_SECTION_TITLE
topmost = /^### (.*)/.match(changelog) || ['', '']
abort('Links seems to already exist for latest version entry') if topmost[1] == LINKS_SECTION_TITLE
links = linked_changelogs(
swiftgen: Utils.swiftgen_version
)
Expand Down

0 comments on commit 24b7a10

Please sign in to comment.