chore: release

This commit is contained in:
ironclaw-ci[bot]
2026-05-07 19:30:59 +00:00
committed by GitHub
parent 481a34a18e
commit 2b9a56e292
6 changed files with 15 additions and 5 deletions

2
Cargo.lock generated
View File

@@ -4041,7 +4041,7 @@ dependencies = [
[[package]]
name = "ironclaw_common"
version = "0.4.0"
version = "0.4.1"
dependencies = [
"chrono-tz",
"serde",

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.0" }
ironclaw_common = { path = "crates/ironclaw_common", version = "0.4.1" }
# 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.1](https://github.com/nearai/ironclaw/compare/ironclaw_common-v0.4.0...ironclaw_common-v0.4.1) - 2026-05-07
### Added
- *(common)* align crate description with lib.rs doc wording ([#3372](https://github.com/nearai/ironclaw/pull/3372))
### Fixed
- *(common)* clarify crate-level doc wording ([#3370](https://github.com/nearai/ironclaw/pull/3370))
## [0.4.0](https://github.com/nearai/ironclaw/compare/ironclaw_common-v0.3.0...ironclaw_common-v0.4.0) - 2026-04-29
### Added

View File

@@ -1,6 +1,6 @@
[package]
name = "ironclaw_common"
version = "0.4.0"
version = "0.4.1"
edition = "2024"
rust-version = "1.92"
description = "Shared types and utilities 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.0" }
ironclaw_common = { path = "../ironclaw_common", version = "0.4.1" }
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

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