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/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 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..9a6a63c 100644 --- a/framework_lib/Cargo.toml +++ b/framework_lib/Cargo.toml @@ -1,11 +1,12 @@ [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" 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 eb82efd..fe7d725 100644 --- a/framework_tool/Cargo.toml +++ b/framework_tool/Cargo.toml @@ -1,11 +1,12 @@ [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" readme = "../README.md" license = "BSD-3-Clause" +license-file = "../LICENSE.md" edition = "2021" [[bin]] @@ -19,7 +20,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