Skip to content

Commit da32bb4

Browse files
committed
Remove quotes around release description
1 parent 3340d35 commit da32bb4

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/trigger-release/trigger-release.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"/repos/rust-osdev/bootloader/releases",
3030
"-f", f"tag_name={tag_name}", "-f", f"target_commitish={sha}",
3131
"-f", f"name={tag_name}",
32-
"-f", "body=\"[Changelog](https://github.com/rust-osdev/bootloader/blob/main/Changelog.md)\"",
32+
"-f", "body=[Changelog](https://github.com/rust-osdev/bootloader/blob/main/Changelog.md)",
3333
"-F", "draft=false", "-F", "prerelease=false", "-F", "generate_release_notes=false",
3434
]
3535
print(" Running `" + ' '.join(command) + '`')

Cargo.lock

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ members = [
2727
exclude = ["examples/basic", "examples/test_framework"]
2828

2929
[workspace.package]
30-
version = "0.11.0-beta.6" # don't forget to update `workspace.dependencies` below
30+
version = "0.11.0-beta.7" # don't forget to update `workspace.dependencies` below
3131
license = "MIT/Apache-2.0"
3232
repository = "https://github.com/rust-osdev/bootloader"
3333

3434
[workspace.dependencies]
35-
bootloader_api = { version = "0.11.0-beta.6", path = "api" }
36-
bootloader-x86_64-common = { version = "0.11.0-beta.6", path = "common" }
37-
bootloader-x86_64-bios-common = { version = "0.11.0-beta.6", path = "bios/common" }
35+
bootloader_api = { version = "0.11.0-beta.7", path = "api" }
36+
bootloader-x86_64-common = { version = "0.11.0-beta.7", path = "common" }
37+
bootloader-x86_64-bios-common = { version = "0.11.0-beta.7", path = "bios/common" }
3838

3939
[dependencies]
4040
anyhow = "1.0.32"

0 commit comments

Comments
 (0)