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
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
".": "0.20.0",
"packages/streamlib-moq": "0.1.6",
"packages/streamlib-webrtc": "0.1.1"
".": "0.21.0",
"packages/streamlib-moq": "0.2.0",
"packages/streamlib-webrtc": "0.2.0"
}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.21.0](https://github.com/tatolab/streamlib/compare/v0.20.0...v0.21.0) (2026-09-11)


### ⚠ BREAKING CHANGES

* **wheel:** keyword-argument configuration is deleted. A processor's `__init__` takes one `config` parameter annotated with its config class, or nothing beyond `self`; any other signature is refused at decoration.

### Features

* **wheel:** a Python processor's config is one class named by its __init__ annotation ([#2226](https://github.com/tatolab/streamlib/issues/2226)) ([9033ca9](https://github.com/tatolab/streamlib/commit/9033ca9b06fb292ae63f8a7d8d4a26a57d04e351))

## [0.20.0](https://github.com/tatolab/streamlib/compare/v0.19.2...v0.20.0) (2026-09-11)


Expand Down
36 changes: 18 additions & 18 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 @@ -39,7 +39,7 @@ members = [
]

[workspace.package]
version = "0.20.0"
version = "0.21.0"
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.20.0" }
streamlib-surface-adapter = { path = "../streamlib-surface-adapter", version = "0.21.0" }
thiserror.workspace = true
tracing.workspace = true

[target.'cfg(target_os = "linux")'.dependencies]
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.20.0" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.20.0" }
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.21.0" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.21.0" }
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.20.0" }
streamlib-surface-adapter = { path = "../streamlib-surface-adapter", version = "0.21.0" }
thiserror.workspace = true
tracing.workspace = true

[target.'cfg(target_os = "linux")'.dependencies]
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.20.0" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.20.0" }
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.21.0" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.21.0" }
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.20.0" }
streamlib-surface-adapter = { path = "../streamlib-surface-adapter", version = "0.21.0" }
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.20.0" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.20.0" }
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.21.0" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.21.0" }
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.20.0" }
streamlib-surface-adapter = { path = "../streamlib-surface-adapter", version = "0.21.0" }
thiserror.workspace = true
tracing.workspace = true

[target.'cfg(target_os = "linux")'.dependencies]
streamlib-adapter-vulkan = { path = "../streamlib-adapter-vulkan", version = "0.20.0" }
streamlib-adapter-opengl = { path = "../streamlib-adapter-opengl", version = "0.20.0" }
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.20.0" }
streamlib-adapter-vulkan = { path = "../streamlib-adapter-vulkan", version = "0.21.0" }
streamlib-adapter-opengl = { path = "../streamlib-adapter-opengl", version = "0.21.0" }
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.21.0" }
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.20.0" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.21.0" }
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.20.0" }
streamlib-surface-adapter = { path = "../streamlib-surface-adapter", version = "0.21.0" }
thiserror.workspace = true
tracing.workspace = true

[target.'cfg(target_os = "linux")'.dependencies]
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.20.0" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.20.0" }
streamlib-consumer-rhi = { path = "../../runtime/streamlib-consumer-rhi", version = "0.21.0" }
streamlib-surface-client = { path = "../../runtime/streamlib-surface-client", version = "0.21.0" }
vulkanalia.workspace = true
libc.workspace = true
serde = { workspace = true }
Expand Down
11 changes: 11 additions & 0 deletions packages/streamlib-moq/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.2.0](https://github.com/tatolab/streamlib/compare/streamlib-moq-v0.1.6...streamlib-moq-v0.2.0) (2026-09-11)


### ⚠ BREAKING CHANGES

* **wheel:** keyword-argument configuration is deleted. A processor's `__init__` takes one `config` parameter annotated with its config class, or nothing beyond `self`; any other signature is refused at decoration.

### Features

* **wheel:** a Python processor's config is one class named by its __init__ annotation ([#2226](https://github.com/tatolab/streamlib/issues/2226)) ([9033ca9](https://github.com/tatolab/streamlib/commit/9033ca9b06fb292ae63f8a7d8d4a26a57d04e351))

## [0.1.6](https://github.com/tatolab/streamlib/compare/streamlib-moq-v0.1.5...streamlib-moq-v0.1.6) (2026-09-06)


Expand Down
2 changes: 1 addition & 1 deletion packages/streamlib-moq/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 packages/streamlib-moq/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "streamlib-moq"
version = "0.1.6"
version = "0.2.0"
edition = "2024"
rust-version = "1.88"
authors = ["Jonathan Fontanez <fontanezj1@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion packages/streamlib-moq/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "streamlib-moq"
version = "0.1.6"
version = "0.2.0"
description = "Media over QUIC publish and subscribe for StreamLib."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
11 changes: 11 additions & 0 deletions packages/streamlib-webrtc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.2.0](https://github.com/tatolab/streamlib/compare/streamlib-webrtc-v0.1.1...streamlib-webrtc-v0.2.0) (2026-09-11)


### ⚠ BREAKING CHANGES

* **wheel:** keyword-argument configuration is deleted. A processor's `__init__` takes one `config` parameter annotated with its config class, or nothing beyond `self`; any other signature is refused at decoration.

### Features

* **wheel:** a Python processor's config is one class named by its __init__ annotation ([#2226](https://github.com/tatolab/streamlib/issues/2226)) ([9033ca9](https://github.com/tatolab/streamlib/commit/9033ca9b06fb292ae63f8a7d8d4a26a57d04e351))

## [0.1.1](https://github.com/tatolab/streamlib/compare/streamlib-webrtc-v0.1.0...streamlib-webrtc-v0.1.1) (2026-09-05)


Expand Down
2 changes: 1 addition & 1 deletion packages/streamlib-webrtc/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 packages/streamlib-webrtc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "streamlib-webrtc"
version = "0.1.1"
version = "0.2.0"
edition = "2024"
rust-version = "1.88"
authors = ["Jonathan Fontanez <fontanezj1@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion packages/streamlib-webrtc/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "streamlib-webrtc"
version = "0.1.1"
version = "0.2.0"
description = "WHIP publish and WHEP play for StreamLib."
readme = "README.md"
requires-python = ">=3.10"
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.20.0" }
streamlib = { path = "../../sdk/streamlib-sdk", version = "0.21.0" }

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


# Serialization (config dataclass ships as serde-derived).
Expand Down
Loading