Skip to content

Commit 072398a

Browse files
authored
chore: release v0.0.14)
## Summary This version includes several improvements to the graph traversal logic, including convergence of traversals, which allows to combine multiple traversals into a single one, as well as several refactorings to improve code clarity and maintainability. Combining traversals is essential for multi-source modules, where traversals are created for each source and then combined and synchronized for execution. Signed-off-by: squidfunk <martin.donath@squidfunk.com>
1 parent 08130cd commit 072398a

8 files changed

Lines changed: 17 additions & 17 deletions

File tree

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ pedantic = { level = "warn", priority = -1 }
4040
[workspace.dependencies]
4141
zrx-diagnostic = { version = "0.0.1", path = "crates/zrx-diagnostic" }
4242
zrx-event = { version = "0.0.1", path = "crates/zrx-event" }
43-
zrx-executor = { version = "0.0.2", path = "crates/zrx-executor" }
44-
zrx-graph = { version = "0.0.8", path = "crates/zrx-graph" }
45-
zrx-id = { version = "0.0.9", path = "crates/zrx-id" }
43+
zrx-executor = { version = "0.0.3", path = "crates/zrx-executor" }
44+
zrx-graph = { version = "0.0.9", path = "crates/zrx-graph" }
45+
zrx-id = { version = "0.0.10", path = "crates/zrx-id" }
4646
zrx-path = { version = "0.0.1", path = "crates/zrx-path" }
47-
zrx-scheduler = { version = "0.0.10", path = "crates/zrx-scheduler" }
47+
zrx-scheduler = { version = "0.0.11", path = "crates/zrx-scheduler" }
4848
zrx-store = { version = "0.0.6", path = "crates/zrx-store" }
49-
zrx-stream = { version = "0.0.10", path = "crates/zrx-stream" }
49+
zrx-stream = { version = "0.0.11", path = "crates/zrx-stream" }
5050

5151
ahash = "0.8.12"
5252
crossbeam = "0.8.4"

crates/zrx-executor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
[package]
2525
name = "zrx-executor"
26-
version = "0.0.2"
26+
version = "0.0.3"
2727
description = "Executor for parallelization of tasks"
2828
edition.workspace = true
2929
rust-version.workspace = true

crates/zrx-graph/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
[package]
2525
name = "zrx-graph"
26-
version = "0.0.8"
26+
version = "0.0.9"
2727
description = "Graph construction and traversal utilities"
2828
edition.workspace = true
2929
rust-version.workspace = true

crates/zrx-id/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
[package]
2525
name = "zrx-id"
26-
version = "0.0.9"
26+
version = "0.0.10"
2727
description = "Identifier abstractions and utilities"
2828
edition.workspace = true
2929
rust-version.workspace = true

crates/zrx-scheduler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
[package]
2525
name = "zrx-scheduler"
26-
version = "0.0.10"
26+
version = "0.0.11"
2727
description = "Scheduler for workflow execution"
2828
edition.workspace = true
2929
rust-version.workspace = true

crates/zrx-stream/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
[package]
2525
name = "zrx-stream"
26-
version = "0.0.10"
26+
version = "0.0.11"
2727
description = "Stream interface"
2828
edition.workspace = true
2929
rust-version.workspace = true

crates/zrx/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
[package]
2525
name = "zrx"
26-
version = "0.0.13"
26+
version = "0.0.14"
2727
description = "Zen Reactive Extensions"
2828
edition.workspace = true
2929
rust-version.workspace = true

0 commit comments

Comments
 (0)