From 3a77e5c8c6e0624fc63c8a3f5b6f7b7a7aee7c01 Mon Sep 17 00:00:00 2001 From: Michael Sloan Date: Wed, 19 Feb 2025 16:32:51 -0700 Subject: [PATCH] Change license of `crates/livekit_api` from AGPL to GPL (#25206) Release Notes: - N/A --- crates/livekit_api/Cargo.toml | 2 +- crates/livekit_api/LICENSE-AGPL | 1 - crates/livekit_api/LICENSE-GPL | 1 + script/check-licenses | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) delete mode 120000 crates/livekit_api/LICENSE-AGPL create mode 120000 crates/livekit_api/LICENSE-GPL diff --git a/crates/livekit_api/Cargo.toml b/crates/livekit_api/Cargo.toml index b087d6b451..421deee113 100644 --- a/crates/livekit_api/Cargo.toml +++ b/crates/livekit_api/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition.workspace = true description = "SDK for the LiveKit server API" publish.workspace = true -license = "AGPL-3.0-or-later" +license = "GPL-3.0-or-later" [lints] workspace = true diff --git a/crates/livekit_api/LICENSE-AGPL b/crates/livekit_api/LICENSE-AGPL deleted file mode 120000 index 5f5cf25dc4..0000000000 --- a/crates/livekit_api/LICENSE-AGPL +++ /dev/null @@ -1 +0,0 @@ -../../LICENSE-AGPL \ No newline at end of file diff --git a/crates/livekit_api/LICENSE-GPL b/crates/livekit_api/LICENSE-GPL new file mode 120000 index 0000000000..89e542f750 --- /dev/null +++ b/crates/livekit_api/LICENSE-GPL @@ -0,0 +1 @@ +../../LICENSE-GPL \ No newline at end of file diff --git a/script/check-licenses b/script/check-licenses index af5d340c62..a58806f379 100755 --- a/script/check-licenses +++ b/script/check-licenses @@ -5,7 +5,7 @@ set -euo pipefail check_license () { local dir="$1" local allowed_licenses=() - local agpl_crates=("crates/collab" "crates/livekit_api") + local agpl_crates=("crates/collab") local is_agpl=false for agpl_crate in "${agpl_crates[@]}"; do