Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,10 @@ zenoh = { version = "1.9.0", default-features = false, features = [
# on publish/package and resolves the dep by version from the index. Without it,
# `cargo package` fails ("all dependencies must have a version requirement") - this
# also covers the service and component crates' dependency on `phoxal`.
phoxal = { path = "phoxal", version = "0.33" }
phoxal = { path = "phoxal", version = "0.34" }
phoxal-api = { path = "phoxal-api", version = "0.21", features = ["preview-v2"] }
phoxal-bus = { path = "phoxal-bus", version = "0.21" }
phoxal-macros = { path = "phoxal-macros", version = "0.22" }
phoxal-macros = { path = "phoxal-macros", version = "0.23" }

[workspace.lints.rust]
unused = "warn"
Expand Down
6 changes: 6 additions & 0 deletions phoxal-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.23.0](https://github.com/phoxal/framework/compare/phoxal-macros-v0.22.0...phoxal-macros-v0.23.0) - 2026-07-16

### Changed

- [**breaking**] *(runtime)* make tool launches clockless ([#268](https://github.com/phoxal/framework/pull/268))

## [0.22.0](https://github.com/phoxal/framework/compare/phoxal-macros-v0.21.3...phoxal-macros-v0.22.0) - 2026-07-15

### Added
Expand Down
2 changes: 1 addition & 1 deletion phoxal-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phoxal-macros"
version = "0.22.0"
version = "0.23.0"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions phoxal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.34.0](https://github.com/phoxal/framework/compare/phoxal-v0.33.0...phoxal-v0.34.0) - 2026-07-16

### Changed

- [**breaking**] *(runtime)* make tool launches clockless ([#268](https://github.com/phoxal/framework/pull/268))

## [0.33.0](https://github.com/phoxal/framework/compare/phoxal-v0.32.6...phoxal-v0.33.0) - 2026-07-15

### Added
Expand Down
2 changes: 1 addition & 1 deletion phoxal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phoxal"
version = "0.33.0"
version = "0.34.0"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion service/motion/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phoxal-service-motion"
version = "0.19.10"
version = "0.19.11"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion service/navigation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phoxal-service-navigation"
version = "0.1.0"
version = "0.1.1"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion tool/joypad/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phoxal-tool-joypad"
version = "0.1.10"
version = "0.1.11"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion tool/router/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phoxal-tool-router"
version = "0.1.10"
version = "0.1.11"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion tool/telemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phoxal-tool-telemetry"
version = "0.1.1"
version = "0.1.2"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down
Loading