Skip to content

3.0.0 (Dec 04, 2025)

Latest

Choose a tag to compare

@github-actions github-actions released this 04 Dec 06:45
· 2 commits to main since this release

Breaking Change

There is a change in how to describe white-list.json.
Previously, package names were specified, but this has been changed to specify repository names.

For example:

Repository URL: https://github.com/{org}/some-kit.git

// swift-tools-version: 6.1

import PackageDescription

let package = Package(
    name: "SomeKit",
    products: [
        .library(name: "SomeKit", targets: ["SomeKit"]),
    ],
    targets: [
        .target(name: "SomeKit"),
    ]
)
{
  "licenses": [],
  "libraries": [
-   "SomeKit"
+   "some-kit"
  ]
}

What's Changed

  • Update Workflow Actions by @Kyome22 in #20
  • Changed to use repository name instead of package name for white list. by @Kyome22 in #21

checksum: 9d93e33b54f087cf7e85e7c3020791195c83fb3b004fff10b82c6324180f1b34

Full Changelog: 2.3.0...3.0.0