chore: update ForgejoKit to 0.6.0

This commit is contained in:
Stefan Hausotte 2026-05-12 18:19:58 +02:00
parent 5e22431d11
commit fd85a211f6
4 changed files with 9 additions and 9 deletions

View file

@ -639,7 +639,7 @@
repositoryURL = "https://codeberg.org/secana/ForgejoKit.git"; repositoryURL = "https://codeberg.org/secana/ForgejoKit.git";
requirement = { requirement = {
kind = exactVersion; kind = exactVersion;
version = 0.5.0; version = 0.6.0;
}; };
}; };
DEC49F6B2F3D00C700E7DD54 /* XCRemoteSwiftPackageReference "textual" */ = { DEC49F6B2F3D00C700E7DD54 /* XCRemoteSwiftPackageReference "textual" */ = {

View file

@ -6,8 +6,8 @@
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",
"location" : "https://codeberg.org/secana/ForgejoKit.git", "location" : "https://codeberg.org/secana/ForgejoKit.git",
"state" : { "state" : {
"revision" : "b87e4980a041557ab4328d4948d311550991525b", "revision" : "2ab5808c34838a59fd46106dd13925b9197c3a6c",
"version" : "0.5.0" "version" : "0.6.0"
} }
}, },
{ {

View file

@ -1,13 +1,13 @@
{ {
"originHash" : "ad0278ea26d22664abc63e2a8738d50505e72b2630016004bbf661b0e4222998", "originHash" : "3df7ce4a2960b9a85054ca79972316bf3a5f238aaccbf978629cc96ffbeb0b5a",
"pins" : [ "pins" : [
{ {
"identity" : "forgejokit", "identity" : "forgejokit",
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",
"location" : "https://codeberg.org/secana/ForgejoKit.git", "location" : "https://codeberg.org/secana/ForgejoKit.git",
"state" : { "state" : {
"revision" : "b87e4980a041557ab4328d4948d311550991525b", "revision" : "2ab5808c34838a59fd46106dd13925b9197c3a6c",
"version" : "0.5.0" "version" : "0.6.0"
} }
} }
], ],

View file

@ -8,13 +8,13 @@ let package = Package(
.macOS(.v15), .macOS(.v15),
], ],
dependencies: [ dependencies: [
.package(url: "https://codeberg.org/secana/ForgejoKit.git", from: "0.5.0"), .package(url: "https://codeberg.org/secana/ForgejoKit.git", from: "0.6.0"),
], ],
targets: [ targets: [
.executableTarget( .executableTarget(
name: "forgejo-seed", name: "forgejo-seed",
dependencies: ["ForgejoKit"], dependencies: ["ForgejoKit"],
path: "Sources" path: "Sources",
), ),
] ],
) )