diff --git a/Cargo.lock b/Cargo.lock index 584c7d8c..1690863e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2623,7 +2623,7 @@ dependencies = [ [[package]] name = "query" -version = "0.3.1-prerelease" +version = "0.3.1" dependencies = [ "anyhow", "bincode", @@ -2649,7 +2649,7 @@ dependencies = [ [[package]] name = "query-server" -version = "0.3.1-prerelease" +version = "0.3.1" dependencies = [ "anyhow", "argon2", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 238a0276..3ed4f044 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "query" -version = "0.3.1-prerelease" +version = "0.3.1" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/cli/src/main.rs b/crates/cli/src/main.rs index dd6867f0..daa9c6c2 100644 --- a/crates/cli/src/main.rs +++ b/crates/cli/src/main.rs @@ -17,7 +17,7 @@ use tracing_subscriber::FmtSubscriber; #[derive(Parser)] #[command(name = "Query")] -#[command(version = "0.3.1-prerelease")] +#[command(version = "0.3.1")] #[command(about = "The CLI to manage your Query Server instance", long_about = None)] struct Cli { #[command(subcommand)] diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index 51ffc458..afbade84 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "query-server" -version = "0.3.1-prerelease" +version = "0.3.1" authors.workspace = true edition.workspace = true license.workspace = true