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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.18.13"
".": "0.18.14"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.18.14](https://github.com/tatolab/streamlib/compare/v0.18.13...v0.18.14) (2026-08-28)


### Features

* **engine:** the ALSA arm — dlopen'd libasound with monotonic timestamps, and the chain demotes in order ([#2010](https://github.com/tatolab/streamlib/issues/2010)) ([b935d89](https://github.com/tatolab/streamlib/commit/b935d89b4d1d56718d1c7d8c89624b01b55e353e))

## [0.18.13](https://github.com/tatolab/streamlib/compare/v0.18.12...v0.18.13) (2026-08-28)


Expand Down
38 changes: 19 additions & 19 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ members = [
]

[workspace.package]
version = "0.18.13"
version = "0.18.14"
edition = "2024"
rust-version = "1.88"
authors = ["Jonathan Fontanez <fontanezj1@gmail.com>"]
Expand Down
6 changes: 3 additions & 3 deletions adapters/streamlib-adapter-cpu-readback/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ name = "streamlib_adapter_cpu_readback"
path = "src/lib.rs"

[dependencies]
streamlib-surface-adapter = { path = "../streamlib-surface-adapter", version = "0.18.13" }
streamlib-surface-adapter = { path = "../streamlib-surface-adapter", version = "0.18.14" }
thiserror.workspace = true
tracing.workspace = true

[target.'cfg(target_os = "linux")'.dependencies]
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.18.13" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.18.13" }
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.18.14" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.18.14" }
vulkanalia.workspace = true
libc.workspace = true
serde = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions adapters/streamlib-adapter-cuda/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ cuda = ["dep:cudarc"]
# spec's `#[repr(C)]` types, and off-Linux consumers (the wheel's CPU
# capsule path) need exactly it.
dlpark.workspace = true
streamlib-surface-adapter = { path = "../streamlib-surface-adapter", version = "0.18.13" }
streamlib-surface-adapter = { path = "../streamlib-surface-adapter", version = "0.18.14" }
thiserror.workspace = true
tracing.workspace = true

[target.'cfg(target_os = "linux")'.dependencies]
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.18.13" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.18.13" }
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.18.14" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.18.14" }
vulkanalia.workspace = true
libc.workspace = true
cudarc = { workspace = true, optional = true }
Expand Down
6 changes: 3 additions & 3 deletions adapters/streamlib-adapter-opengl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ name = "streamlib_adapter_opengl"
path = "src/lib.rs"

[dependencies]
streamlib-surface-adapter = { path = "../streamlib-surface-adapter", version = "0.18.13" }
streamlib-surface-adapter = { path = "../streamlib-surface-adapter", version = "0.18.14" }
parking_lot = "0.12"
thiserror.workspace = true
tracing.workspace = true

[target.'cfg(target_os = "linux")'.dependencies]
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.18.13" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.18.13" }
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.18.14" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.18.14" }
khronos-egl = { version = "6.0", features = ["dynamic"] }
gl = "0.14"
libc.workspace = true
Expand Down
10 changes: 5 additions & 5 deletions adapters/streamlib-adapter-skia/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ name = "streamlib_adapter_skia"
path = "src/lib.rs"

[dependencies]
streamlib-surface-adapter = { path = "../streamlib-surface-adapter", version = "0.18.13" }
streamlib-surface-adapter = { path = "../streamlib-surface-adapter", version = "0.18.14" }
thiserror.workspace = true
tracing.workspace = true

[target.'cfg(target_os = "linux")'.dependencies]
streamlib-adapter-vulkan = { path = "../streamlib-adapter-vulkan", version = "0.18.13" }
streamlib-adapter-opengl = { path = "../streamlib-adapter-opengl", version = "0.18.13" }
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.18.13" }
streamlib-adapter-vulkan = { path = "../streamlib-adapter-vulkan", version = "0.18.14" }
streamlib-adapter-opengl = { path = "../streamlib-adapter-opengl", version = "0.18.14" }
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.18.14" }
vulkanalia.workspace = true
skia-safe = { workspace = true }
# vkGetInstanceProcAddr lives on vulkanalia's private StaticCommands;
Expand All @@ -36,7 +36,7 @@ libloading = "0.8"
# live under regular `[dependencies]` rather than `[dev-dependencies]`
# because Cargo's `[[bin]]` targets don't see dev-deps. Same shape as
# `streamlib-adapter-opengl/Cargo.toml`.
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.18.13" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.18.14" }
serde = { workspace = true }
serde_json.workspace = true
libc.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions adapters/streamlib-adapter-vulkan/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ name = "streamlib_adapter_vulkan"
path = "src/lib.rs"

[dependencies]
streamlib-surface-adapter = { path = "../streamlib-surface-adapter", version = "0.18.13" }
streamlib-surface-adapter = { path = "../streamlib-surface-adapter", version = "0.18.14" }
thiserror.workspace = true
tracing.workspace = true

[target.'cfg(target_os = "linux")'.dependencies]
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.18.13" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.18.13" }
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.18.14" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.18.14" }
vulkanalia.workspace = true
libc.workspace = true
serde = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions packages/test-fixtures/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ crate-type = ["rlib"]

[dependencies]
# Engine substrate — runtime context and processor traits.
streamlib = { path = "../../sdk/streamlib-sdk", version = "0.18.13" }
streamlib = { path = "../../sdk/streamlib-sdk", version = "0.18.14" }

# Procedural macros — `#[streamlib::sdk::processor("...")]` reads the
# crate's own `streamlib.yaml` at `CARGO_MANIFEST_DIR`.
streamlib-macros = { path = "../../sdk/streamlib-macros", version = "0.18.13" }
streamlib-macros = { path = "../../sdk/streamlib-macros", version = "0.18.14" }


# Serialization (config dataclass ships as serde-derived).
Expand Down
8 changes: 4 additions & 4 deletions runtime/streamlib-api-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ default = []
moq = ["dep:streamlib-moq"]

[dependencies]
streamlib = { path = "../../sdk/streamlib-sdk", version = "0.18.13" }
streamlib-macros = { path = "../../sdk/streamlib-macros", version = "0.18.13" }
streamlib-moq = { path = "../../runtime/streamlib-moq", version = "0.18.13", optional = true }
streamlib = { path = "../../sdk/streamlib-sdk", version = "0.18.14" }
streamlib-macros = { path = "../../sdk/streamlib-macros", version = "0.18.14" }
streamlib-moq = { path = "../../runtime/streamlib-moq", version = "0.18.14", optional = true }

tower-http = { version = "0.6", features = ["trace"] }
futures-util = "0.3"
Expand Down Expand Up @@ -63,7 +63,7 @@ percent-encoding = "2.3"
# Enables the engine's `test-support` in-memory `TapSubscription` constructor
# for the MCP/REST tap-tool tests. A dev-dep feature: active for tests, absent
# from the production `cargo build` dependency graph.
streamlib = { path = "../../sdk/streamlib-sdk", version = "0.18.13", features = ["test-support"] }
streamlib = { path = "../../sdk/streamlib-sdk", version = "0.18.14", features = ["test-support"] }
tempfile = "3"
tower = {version = "0.5", features = ["util"]}
serial_test = "3.2"
2 changes: 1 addition & 1 deletion runtime/streamlib-consumer-rhi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ thiserror.workspace = true
tracing.workspace = true

[target.'cfg(target_os = "linux")'.dependencies]
streamlib-surface-client = { path = "../streamlib-surface-client", version = "0.18.13" }
streamlib-surface-client = { path = "../streamlib-surface-client", version = "0.18.14" }
vulkanalia.workspace = true
libc.workspace = true

Expand Down
Loading