chore(release): bump workspace to v1.1.0

Aligns the Cargo package version with the blueprint roadmap labels.
v1.1.0 = SDK foundation (#0) + stdlib utilities (#0.5), the first
release of the Phase 4 / v1.1 series.

Also updates docs/versioning.md:

  - Current versions table: Product 0.6.0 -> 1.1.0
  - Docker / Git tag examples: 0.2.0 -> 1.1.0

Cargo.lock regenerated by `cargo check --workspace`.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
MechaCat02
2026-05-30 20:39:34 +02:00
parent 1a6324078c
commit 9d01f42d5e
3 changed files with 13 additions and 13 deletions

18
Cargo.lock generated
View File

@@ -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",

View File

@@ -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"

View File

@@ -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`) |