From d185f3df70b027bca5a04fb713ffcaf7066ed783 Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Wed, 3 Jun 2026 00:09:12 +0800 Subject: [PATCH 1/3] bump version to 0.6.4 Signed-off-by: Daniel Schaefer --- Cargo.lock | 6 +++--- flake.nix | 6 +++--- framework_lib/Cargo.toml | 2 +- framework_tool/Cargo.toml | 4 ++-- framework_uefi/Cargo.toml | 4 ++-- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2ae1a2b..39bdbf9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -380,7 +380,7 @@ dependencies = [ [[package]] name = "framework_lib" -version = "0.6.3" +version = "0.6.4" dependencies = [ "built", "clap", @@ -416,7 +416,7 @@ dependencies = [ [[package]] name = "framework_tool" -version = "0.6.3" +version = "0.6.4" dependencies = [ "embed-resource", "framework_lib", @@ -427,7 +427,7 @@ dependencies = [ [[package]] name = "framework_uefi" -version = "0.6.3" +version = "0.6.4" dependencies = [ "framework_lib", "log", diff --git a/flake.nix b/flake.nix index 155208e..1836231 100644 --- a/flake.nix +++ b/flake.nix @@ -91,7 +91,7 @@ in rustPlatform.buildRustPackage { pname = "framework_tool"; - version = "0.6.3"; + version = "0.6.4"; src = buildSrc; @@ -144,7 +144,7 @@ in rustPlatformWindows.buildRustPackage { pname = "framework_tool"; - version = "0.6.3"; + version = "0.6.4"; src = buildSrc; @@ -194,7 +194,7 @@ in rustPlatform.buildRustPackage { pname = "framework_uefi"; - version = "0.6.3"; + version = "0.6.4"; src = buildSrc; diff --git a/framework_lib/Cargo.toml b/framework_lib/Cargo.toml index fcc5383..bf0b95a 100644 --- a/framework_lib/Cargo.toml +++ b/framework_lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "framework_lib" -version = "0.6.3" +version = "0.6.4" description = "Library to control Framework Computer systems" homepage = "https://github.com/FrameworkComputer/framework-system" repository = "https://github.com/FrameworkComputer/framework-system" diff --git a/framework_tool/Cargo.toml b/framework_tool/Cargo.toml index eb82efd..ae003b6 100644 --- a/framework_tool/Cargo.toml +++ b/framework_tool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "framework_tool" -version = "0.6.3" +version = "0.6.4" description = "Tool to control Framework Computer systems" homepage = "https://github.com/FrameworkComputer/framework-system" repository = "https://github.com/FrameworkComputer/framework-system" @@ -19,7 +19,7 @@ nvidia = [ "framework_lib/nvidia" ] [dependencies.framework_lib] path = "../framework_lib" -version = "0.6.3" +version = "0.6.4" [build-dependencies] static_vcruntime = "3.0" diff --git a/framework_uefi/Cargo.toml b/framework_uefi/Cargo.toml index a284887..0cf6eba 100644 --- a/framework_uefi/Cargo.toml +++ b/framework_uefi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "framework_uefi" -version = "0.6.3" +version = "0.6.4" description = "UEFI Tool to control Framework Computer systems" homepage = "https://github.com/FrameworkComputer/framework-system" repository = "https://github.com/FrameworkComputer/framework-system" @@ -24,6 +24,6 @@ log = { version = "0.4", default-features = true } [dependencies.framework_lib] path = "../framework_lib" -version = "0.6.3" +version = "0.6.4" features = ["uefi"] default-features = false From e97347718e74ec035a0abed9ac8d268ff1630851 Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Wed, 3 Jun 2026 00:09:20 +0800 Subject: [PATCH 2/3] contrib: Fix typo Signed-off-by: Daniel Schaefer --- contrib/release.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/release.md b/contrib/release.md index 2bcfb13..acb9872 100644 --- a/contrib/release.md +++ b/contrib/release.md @@ -41,8 +41,8 @@ Dry run and review included files ``` cargo publish -p framework_lib --dry-run cargo publish -p framework_tool --dry-run -cargo package list -p framework_lib -cargo package list -p framework_tool +cargo package --list -p framework_lib +cargo package --list -p framework_tool ``` Publish From 74fed7674acef97b9e45d72cbf1d7e759bcf472b Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Wed, 3 Jun 2026 00:17:24 +0800 Subject: [PATCH 3/3] cargo: Add license file Solves: https://github.com/FrameworkComputer/framework-system/issues/341 Check with: cargo package --list -p framework_lib | grep LICENSE.md Signed-off-by: Daniel Schaefer --- framework_lib/Cargo.toml | 1 + framework_tool/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/framework_lib/Cargo.toml b/framework_lib/Cargo.toml index bf0b95a..9a6a63c 100644 --- a/framework_lib/Cargo.toml +++ b/framework_lib/Cargo.toml @@ -6,6 +6,7 @@ homepage = "https://github.com/FrameworkComputer/framework-system" repository = "https://github.com/FrameworkComputer/framework-system" readme = "../README.md" license = "BSD-3-Clause" +license-file = "../LICENSE.md" edition = "2021" # Minimum Supported Rust Version rust-version = "1.81" diff --git a/framework_tool/Cargo.toml b/framework_tool/Cargo.toml index ae003b6..fe7d725 100644 --- a/framework_tool/Cargo.toml +++ b/framework_tool/Cargo.toml @@ -6,6 +6,7 @@ homepage = "https://github.com/FrameworkComputer/framework-system" repository = "https://github.com/FrameworkComputer/framework-system" readme = "../README.md" license = "BSD-3-Clause" +license-file = "../LICENSE.md" edition = "2021" [[bin]]