Skip to content
Merged
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
69 changes: 48 additions & 21 deletions knope.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,53 +14,91 @@ enabled = true
# --- Package configuration ---

[packages.soxr-sys]
versioned_files = ["soxr-sys/Cargo.toml"]
versioned_files = [
"soxr-sys/Cargo.toml",
"Cargo.lock",
{ path = "Cargo.toml", dependency = "soxr-sys" },
]
changelog = "soxr-sys/CHANGELOG.md"
scopes = ["soxr-sys", "soxr"]

[packages.yuv-sys]
versioned_files = ["yuv-sys/Cargo.toml"]
versioned_files = [
"yuv-sys/Cargo.toml",
"Cargo.lock",
{ path = "Cargo.toml", dependency = "yuv-sys" },
]
changelog = "yuv-sys/CHANGELOG.md"
scopes = ["yuv-sys", "yuv"]

[packages.imgproc]
versioned_files = ["imgproc/Cargo.toml"]
versioned_files = [
"imgproc/Cargo.toml",
"Cargo.lock",
{ path = "Cargo.toml", dependency = "imgproc" },
]
changelog = "imgproc/CHANGELOG.md"
scopes = ["imgproc"]

[packages.webrtc-sys-build]
versioned_files = ["webrtc-sys/build/Cargo.toml"]
versioned_files = [
"webrtc-sys/build/Cargo.toml",
"Cargo.lock",
{ path = "Cargo.toml", dependency = "webrtc-sys-build" },
]
changelog = "webrtc-sys/build/CHANGELOG.md"
scopes = ["webrtc-sys-build"]

[packages.webrtc-sys]
versioned_files = ["webrtc-sys/Cargo.toml"]
versioned_files = [
"webrtc-sys/Cargo.toml",
"Cargo.lock",
{ path = "Cargo.toml", dependency = "webrtc-sys" },
]
changelog = "webrtc-sys/CHANGELOG.md"
scopes = ["webrtc-sys"]

[packages.livekit-protocol]
versioned_files = ["livekit-protocol/Cargo.toml"]
versioned_files = [
"livekit-protocol/Cargo.toml",
"Cargo.lock",
{ path = "Cargo.toml", dependency = "livekit-protocol" },
]
changelog = "livekit-protocol/CHANGELOG.md"
scopes = ["livekit-protocol", "protocol"]

[packages.livekit-api]
versioned_files = ["livekit-api/Cargo.toml"]
versioned_files = [
"livekit-api/Cargo.toml",
"Cargo.lock",
{ path = "Cargo.toml", dependency = "livekit-api" },
]
changelog = "livekit-api/CHANGELOG.md"
scopes = ["livekit-api"]

[packages.libwebrtc]
versioned_files = ["libwebrtc/Cargo.toml"]
versioned_files = [
"libwebrtc/Cargo.toml",
"Cargo.lock",
{ path = "Cargo.toml", dependency = "libwebrtc" },
]
changelog = "libwebrtc/CHANGELOG.md"
scopes = ["libwebrtc"]

[packages.livekit]
versioned_files = ["livekit/Cargo.toml"]
versioned_files = [
"livekit/Cargo.toml",
"Cargo.lock",
{ path = "Cargo.toml", dependency = "livekit" },
]
changelog = "livekit/CHANGELOG.md"
scopes = ["livekit"]

[packages.livekit-ffi]
versioned_files = [
"livekit-ffi/Cargo.toml",
"Cargo.lock",
{ path = "Cargo.toml", dependency = "livekit-ffi" },
"livekit-ffi-node-bindings/package.json",
"livekit-ffi-node-bindings/npm/darwin-arm64/package.json",
"livekit-ffi-node-bindings/npm/darwin-x64/package.json",
Expand All @@ -71,15 +109,4 @@ versioned_files = [
changelog = "livekit-ffi/CHANGELOG.md"
# Assets makes knope create a draft release; CI uploads the actual binaries and publishes.
assets = "marker"
scopes = [
"ffi",
"livekit-ffi",
# Aggregated from deps (mirrors release-plz changelog_include):
"livekit",
"soxr-sys",
"soxr",
"imgproc",
"livekit-protocol",
"protocol",
"webrtc-sys-build",
]
scopes = ["ffi", "livekit-ffi"]