diff --git a/Cargo.lock b/Cargo.lock index 847a596..48a428e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3135,14 +3135,14 @@ dependencies = [ [[package]] name = "procnote-cli" -version = "0.0.0" +version = "0.0.3" dependencies = [ "procnote-tauri", ] [[package]] name = "procnote-core" -version = "0.0.0" +version = "0.0.3" dependencies = [ "chrono", "log", @@ -3159,7 +3159,7 @@ dependencies = [ [[package]] name = "procnote-tauri" -version = "0.0.0" +version = "0.0.3" dependencies = [ "aes-gcm", "base64 0.22.1", diff --git a/Cargo.toml b/Cargo.toml index eb87919..0742cbc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,7 @@ resolver = "3" members = ["crates/procnote-cli", "crates/procnote-core", "src-tauri"] [workspace.package] +version = "0.0.3" description = "Event-sourced desktop app for tracking step-by-step procedures" license = "MIT OR Apache-2.0" repository = "https://github.com/shunichironomura/procnote" diff --git a/crates/procnote-cli/Cargo.toml b/crates/procnote-cli/Cargo.toml index 4f980cd..e8f296b 100644 --- a/crates/procnote-cli/Cargo.toml +++ b/crates/procnote-cli/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "procnote-cli" -# Version not tracked here; see src-tauri/tauri.conf.json for the release version. -version = "0.0.0" +version.workspace = true edition = "2024" description.workspace = true repository.workspace = true diff --git a/crates/procnote-core/Cargo.toml b/crates/procnote-core/Cargo.toml index efe72b3..664d8e4 100644 --- a/crates/procnote-core/Cargo.toml +++ b/crates/procnote-core/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "procnote-core" -# Version not tracked here; see src-tauri/tauri.conf.json for the release version. -version = "0.0.0" +version.workspace = true edition = "2024" description.workspace = true repository.workspace = true diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 6de8624..3d2d825 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "procnote-tauri" -# Version not tracked here; see src-tauri/tauri.conf.json for the release version. -version = "0.0.0" +version.workspace = true edition = "2024" description.workspace = true repository.workspace = true diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index 73acb0b..4b8abd4 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -28,6 +28,7 @@ use state::AppState; /// Command-line arguments shared by both binary crates. #[derive(Parser, Debug)] #[command( + name = "procnote", version, about = "procnote - Procedure execution tool for hardware testing." )] diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index fb6c57c..e298e31 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,6 @@ { "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "productName": "procnote", - "version": "0.0.3", "identifier": "com.github.shunichironomura.procnote", "build": { "frontendDist": "../build",