From 677fd6d760967f1f20175ed98c73291dcdd57a8d Mon Sep 17 00:00:00 2001 From: Brent Rager Date: Thu, 20 Aug 2026 15:04:38 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20smooai-ui=20to=20v0.1.1=20=E2=80=94=20th?= =?UTF-8?q?e=20studio=20monogram=20was=20missing=20its=20S?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit desktop/Cargo.toml pinned `tag = "v0.1.0"`, a lightweight tag on ui's INITIAL commit, so Observability Studio has been rendering a monogram with no inner "S" and no dot since it shipped. v0.1.1 fixes it. No breaking renames: the tokens module is now generated from shared/tokens.json with every prior constant name preserved (RADIUS_PX kept as an alias of RADIUS_MD_PX), and it adds six tokens the CSS already had and Rust omitted (MUTED, MUTED_FOREGROUND, ACCENT, INPUT, RING, SIDEBAR) plus the `.input` CSS family. Nothing here consumes the new names yet — this is the pin bump only. Verified on the bumped lock: cargo fmt --check clean, clippy --workspace --all-targets -D warnings clean, cargo test --workspace green. Closes th-ae618e. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_0152bbE1veqfG1SVJdyLCBxC --- desktop/Cargo.lock | 7 +++++-- desktop/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/desktop/Cargo.lock b/desktop/Cargo.lock index 76fc7b2..fdf1e8b 100644 --- a/desktop/Cargo.lock +++ b/desktop/Cargo.lock @@ -4246,8 +4246,11 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" [[package]] name = "smooai-ui" -version = "0.1.0" -source = "git+https://github.com/SmooAI/ui.git?tag=v0.1.0#60426f134a06096bad3fce4523db1a904e9bc657" +version = "0.1.1" +source = "git+https://github.com/SmooAI/ui.git?tag=v0.1.1#0737d8b2c14484da22d67e2bd1a0e169336ce4c6" +dependencies = [ + "serde_json", +] [[package]] name = "socket2" diff --git a/desktop/Cargo.toml b/desktop/Cargo.toml index 046bcb9..a03950c 100644 --- a/desktop/Cargo.toml +++ b/desktop/Cargo.toml @@ -23,7 +23,7 @@ dioxus-desktop = "0.6" # without needing the sibling repo checked out. Devs working on tokens # locally can override to a path dep via desktop/.cargo/config.toml # (committed) — see that file for the recipe. -smooai-ui = { git = "https://github.com/SmooAI/ui.git", tag = "v0.1.0" } +smooai-ui = { git = "https://github.com/SmooAI/ui.git", tag = "v0.1.1" } # Async + HTTP tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time"] }