Skip to content

Commit 595ee20

Browse files
committed
refactor(deps): resolve openkal through the index rather than a branch
A released package that names a development branch is fragile: the branch is not part of any release, and deleting it breaks a tarball that has already been published. openkal 0.6.0 is in the index, so this reference names it. Claude-Session: https://claude.ai/code/session_01Q4ucduLuSsETHYJ1RkGVVD
1 parent 89c2566 commit 595ee20

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

examples/hello/mcpp.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ target = "x86_64-windows-gnu"
1111
ldflags = ["-nostdlib", "-Wl,--subsystem,10", "-Wl,-e,efi_main"]
1212

1313
[dependencies]
14-
openkal = { git = "https://github.com/mcpplibs/openkal", branch = "feat/openkal-closure" }
14+
openkal = "0.6.0"
1515
openkal-uefi = { path = "../.." }

mcpp.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
[package]
1616
namespace = "mcpplibs"
1717
name = "openkal-uefi"
18-
version = "0.1.1"
18+
version = "0.1.2"
1919
description = "An implementation of openkal on UEFI Boot Services, for applications the firmware loads before an operating system exists"
2020
license = "Apache-2.0"
2121

@@ -32,7 +32,7 @@ authors = ["mcpplibs"]
3232
repo = "https://github.com/mcpplibs/openkal-uefi"
3333

3434
[dependencies]
35-
openkal = { git = "https://github.com/mcpplibs/openkal", branch = "feat/openkal-closure" }
35+
openkal = "0.6.0"
3636

3737
[build]
3838
flags = [

0 commit comments

Comments
 (0)