diff --git a/Cargo.lock b/Cargo.lock index 977068c..535af93 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1505,7 +1505,7 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" [[package]] name = "picloud" -version = "0.6.0" +version = "1.1.0" dependencies = [ "anyhow", "async-trait", @@ -1531,7 +1531,7 @@ dependencies = [ [[package]] name = "picloud-cli" -version = "0.6.0" +version = "1.1.0" dependencies = [ "anyhow", "assert_cmd", @@ -1552,7 +1552,7 @@ dependencies = [ [[package]] name = "picloud-executor" -version = "0.6.0" +version = "1.1.0" dependencies = [ "anyhow", "picloud-executor-core", @@ -1564,7 +1564,7 @@ dependencies = [ [[package]] name = "picloud-executor-core" -version = "0.6.0" +version = "1.1.0" dependencies = [ "base64", "chrono", @@ -1583,7 +1583,7 @@ dependencies = [ [[package]] name = "picloud-manager" -version = "0.6.0" +version = "1.1.0" dependencies = [ "anyhow", "picloud-manager-core", @@ -1595,7 +1595,7 @@ dependencies = [ [[package]] name = "picloud-manager-core" -version = "0.6.0" +version = "1.1.0" dependencies = [ "argon2", "async-trait", @@ -1619,7 +1619,7 @@ dependencies = [ [[package]] name = "picloud-orchestrator" -version = "0.6.0" +version = "1.1.0" dependencies = [ "anyhow", "picloud-orchestrator-core", @@ -1631,7 +1631,7 @@ dependencies = [ [[package]] name = "picloud-orchestrator-core" -version = "0.6.0" +version = "1.1.0" dependencies = [ "async-trait", "axum", @@ -1650,7 +1650,7 @@ dependencies = [ [[package]] name = "picloud-shared" -version = "0.6.0" +version = "1.1.0" dependencies = [ "async-trait", "chrono", diff --git a/Cargo.toml b/Cargo.toml index b3f5ff5..3e97692 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ ] [workspace.package] -version = "0.6.0" +version = "1.1.0" edition = "2021" rust-version = "1.92" license = "MIT OR Apache-2.0" diff --git a/docs/versioning.md b/docs/versioning.md index 5efba07..01c65f5 100644 --- a/docs/versioning.md +++ b/docs/versioning.md @@ -14,8 +14,8 @@ All of these carry the same version and are bumped together: - Every crate in the Cargo workspace (via `version.workspace = true`) - The dashboard's `package.json` -- Docker image tags (`picloud:0.2.0`) -- Git tags (`v0.2.0`) +- Docker image tags (`picloud:1.1.0`) +- Git tags (`v1.1.0`) Defined once in [`Cargo.toml`](../Cargo.toml) under `[workspace.package]`. There is no scenario where one crate is at a different version than another in the same build. @@ -126,7 +126,7 @@ A surface can hit its own `1.0` independently of the product. The SDK in particu | | Version | |---|---| -| Product | `0.6.0` | +| Product | `1.1.0` | | SDK | `1.1` (adds `ctx.request.params`, `ctx.request.query`, `ctx.request.rest`) | | API | `1` (additive: `Script.app_id`, `Route.app_id`, `ExecutionLog.app_id`, new `/api/v1/admin/apps/*` and `/api/v1/admin/api-keys/*` endpoints, `?app=` filter on script list, `Authorization: Bearer pic_…` credential type, 403 responses on previously-401-only admin endpoints when the caller lacks the required capability) | | Schema | `6` (matches `migrations/0006_users_authz.sql`) |