Skip to content

Commit 00adab5

Browse files
authored
Add livekit-common to knope (#1303)
When adding `livekit-common` in #1227, I missed adding it to the `knope.toml`. What that looks like it meant in practice is the initial crate publish succeeded, but once the next update occurred to this crate it wasn't tracked properly by knope and further updates weren't pushed. Caveat: I don't have a super strong grasp on how knope is set up in this repo. Fixes #1302
1 parent 00258d1 commit 00adab5

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ livekit = { version = "0.8.1", path = "livekit" }
5353
livekit-api = { version = "0.6.1", path = "livekit-api" }
5454
livekit-ffi = { version = "0.12.73", path = "livekit-ffi" }
5555
livekit-datatrack = { version = "0.1.13", path = "livekit-datatrack" }
56-
livekit-common = { version = "0.1.0", path = "livekit-common" }
56+
livekit-common = { version = "0.1.1", path = "livekit-common" }
5757
livekit-data-stream = { version = "0.1.1", path = "livekit-data-stream" }
5858
livekit-net = { version = "0.1.2", path = "livekit-net" }
5959
livekit-protocol = { version = "0.7.12", path = "livekit-protocol" }

knope.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,14 @@ versioned_files = [
150150
]
151151
changelog = "livekit-datatrack/CHANGELOG.md"
152152

153+
[packages.livekit-common]
154+
versioned_files = [
155+
"livekit-common/Cargo.toml",
156+
"Cargo.lock",
157+
{ path = "Cargo.toml", dependency = "livekit-common" },
158+
]
159+
changelog = "livekit-common/CHANGELOG.md"
160+
153161
[packages.livekit-data-stream]
154162
versioned_files = [
155163
"livekit-data-stream/Cargo.toml",

livekit-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "livekit-common"
33
description = "Common foundational types shared across LiveKit crates"
4-
version = "0.1.0"
4+
version = "0.1.1"
55
readme = "README.md"
66
license.workspace = true
77
edition.workspace = true

0 commit comments

Comments
 (0)