From 19383036d5ec1ac7821ad21b3ff1fae95a5f004e Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 29 Jan 2025 18:03:20 -0500 Subject: [PATCH] anthropic: Fix license (#23867) This PR fixes the license for the `anthropic` crate. It was mistakenly licensed as AGPL, despite being used outside of collab. It should be licensed as GPL. Release Notes: - N/A --- crates/anthropic/Cargo.toml | 2 +- crates/anthropic/LICENSE-AGPL | 1 - crates/anthropic/LICENSE-GPL | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) delete mode 120000 crates/anthropic/LICENSE-AGPL create mode 120000 crates/anthropic/LICENSE-GPL diff --git a/crates/anthropic/Cargo.toml b/crates/anthropic/Cargo.toml index 35d849fb47..6e19bbe665 100644 --- a/crates/anthropic/Cargo.toml +++ b/crates/anthropic/Cargo.toml @@ -3,7 +3,7 @@ name = "anthropic" version = "0.1.0" edition.workspace = true publish.workspace = true -license = "AGPL-3.0-or-later" +license = "GPL-3.0-or-later" [features] default = [] diff --git a/crates/anthropic/LICENSE-AGPL b/crates/anthropic/LICENSE-AGPL deleted file mode 120000 index 5f5cf25dc4..0000000000 --- a/crates/anthropic/LICENSE-AGPL +++ /dev/null @@ -1 +0,0 @@ -../../LICENSE-AGPL \ No newline at end of file diff --git a/crates/anthropic/LICENSE-GPL b/crates/anthropic/LICENSE-GPL new file mode 120000 index 0000000000..89e542f750 --- /dev/null +++ b/crates/anthropic/LICENSE-GPL @@ -0,0 +1 @@ +../../LICENSE-GPL \ No newline at end of file