chore: release

This commit is contained in:
ironclaw-ci[bot]
2026-05-11 20:52:49 +00:00
committed by GitHub
parent 4d485e0a87
commit 1f4fa56005
7 changed files with 16 additions and 6 deletions

2
Cargo.lock generated
View File

@@ -4042,7 +4042,7 @@ dependencies = [
[[package]]
name = "ironclaw_common"
version = "0.4.1"
version = "0.4.2"
dependencies = [
"chrono-tz",
"dirs",

View File

@@ -116,7 +116,7 @@ cron = "0.13"
jsonschema = { version = "0.45", default-features = false }
# Shared types
ironclaw_common = { path = "crates/ironclaw_common", version = "0.4.1" }
ironclaw_common = { path = "crates/ironclaw_common", version = "0.4.2" }
# Safety/sanitization
ironclaw_engine = { path = "crates/ironclaw_engine", version = "0.1.0" }

View File

@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.4.2](https://github.com/nearai/ironclaw/compare/ironclaw_common-v0.4.1...ironclaw_common-v0.4.2) - 2026-05-11
### Added
- *(common)* describe paths and platform helpers in crate description ([#3498](https://github.com/nearai/ironclaw/pull/3498))
### Other
- *(llm)* extract multi-provider integration into ironclaw_llm crate ([#3387](https://github.com/nearai/ironclaw/pull/3387))
## [0.4.1](https://github.com/nearai/ironclaw/compare/ironclaw_common-v0.4.0...ironclaw_common-v0.4.1) - 2026-05-07
### Added

View File

@@ -1,6 +1,6 @@
[package]
name = "ironclaw_common"
version = "0.4.1"
version = "0.4.2"
edition = "2024"
rust-version = "1.92"
description = "Shared types, paths, and platform helpers used across the IronClaw workspace"

View File

@@ -16,7 +16,7 @@ dist = false
[dependencies]
async-trait = "0.1"
cron = "0.13"
ironclaw_common = { path = "../ironclaw_common", version = "0.4.1" }
ironclaw_common = { path = "../ironclaw_common", version = "0.4.2" }
ironclaw_skills = { path = "../ironclaw_skills", version = "0.3.0", default-features = false }
chrono = { version = "0.4", features = ["serde"] }
monty = { git = "https://github.com/pydantic/monty.git", tag = "v0.0.16" }

View File

@@ -20,7 +20,7 @@ bedrock = ["dep:aws-config", "dep:aws-sdk-bedrockruntime", "dep:aws-smithy-types
testing = []
[dependencies]
ironclaw_common = { path = "../ironclaw_common", version = "0.4.1" }
ironclaw_common = { path = "../ironclaw_common", version = "0.4.2" }
ironclaw_safety = { path = "../ironclaw_safety", version = "0.2.2" }
async-trait = "0.1"

View File

@@ -15,7 +15,7 @@ default = ["clipboard"]
clipboard = ["dep:arboard", "dep:image"]
[dependencies]
ironclaw_common = { path = "../ironclaw_common", version = "0.4.1" }
ironclaw_common = { path = "../ironclaw_common", version = "0.4.2" }
ratatui = { version = "0.29", features = ["crossterm"] }
tui-textarea = { version = "0.7", features = ["crossterm"] }
serde = { version = "1", features = ["derive"] }