Update license for `radicle-cob`

Now that we've obtained permission from the original author, we're
able to update the license to MIT/Apache.
This commit is contained in:
Alexis Sellier 2023-04-23 15:20:35 +02:00
parent 7f8526ff76
commit d74535a5a5
No known key found for this signature in database
27 changed files with 2 additions and 79 deletions

View File

@ -6,7 +6,7 @@ authors = [
"Fintan Halpenny <fintan.halpenny@gmail.com>", "Fintan Halpenny <fintan.halpenny@gmail.com>",
] ]
edition = "2021" edition = "2021"
license = "GPL-3.0-or-later" license = "MIT OR Apache-2.0"
description = "Library for implementing Radicle Collaborative Objects" description = "Library for implementing Radicle Collaborative Objects"
keywords = ["radicle", "collaborative objects", "cob", "cobs"] keywords = ["radicle", "collaborative objects", "cob", "cobs"]

View File

@ -1,6 +1,3 @@
// Copyright © 2022 The Radicle Link Contributors // Copyright © 2022 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
pub mod git; pub mod git;

View File

@ -1,7 +1,4 @@
// Copyright © 2022 The Radicle Link Contributors // Copyright © 2022 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
pub mod change; pub mod change;

View File

@ -1,7 +1,4 @@
// Copyright © 2022 The Radicle Link Contributors // Copyright © 2022 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use std::collections::BTreeMap; use std::collections::BTreeMap;
use std::convert::TryFrom; use std::convert::TryFrom;

View File

@ -1,7 +1,4 @@
// Copyright © 2021 The Radicle Link Contributors // Copyright © 2021 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use git_ext::Oid; use git_ext::Oid;

View File

@ -1,7 +1,4 @@
// Copyright © 2022 The Radicle Link Contributors // Copyright © 2022 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use std::{error::Error, fmt}; use std::{error::Error, fmt};

View File

@ -1,7 +1,4 @@
// Copyright © 2021 The Radicle Link Contributors // Copyright © 2021 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use std::{collections::BTreeSet, convert::TryInto}; use std::{collections::BTreeSet, convert::TryInto};

View File

@ -1,7 +1,4 @@
// Copyright © 2021 The Radicle Link Contributors // Copyright © 2021 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use std::{collections::HashMap, ops::ControlFlow}; use std::{collections::HashMap, ops::ControlFlow};

View File

@ -1,7 +1,4 @@
// Copyright © 2021 The Radicle Link Contributors // Copyright © 2021 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use std::{ use std::{
collections::{BTreeSet, HashMap}, collections::{BTreeSet, HashMap},

View File

@ -1,7 +1,5 @@
// Copyright © 2021 The Radicle Link Contributors // Copyright © 2021 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use std::fmt; use std::fmt;
use std::ops::Deref; use std::ops::Deref;
use std::str::FromStr; use std::str::FromStr;

View File

@ -1,7 +1,4 @@
// Copyright © 2021 The Radicle Link Contributors // Copyright © 2021 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
//! # Collaborative Objects //! # Collaborative Objects
//! //!

View File

@ -1,7 +1,4 @@
// Copyright © 2022 The Radicle Link Contributors // Copyright © 2022 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use std::{convert::TryFrom as _, fmt, ops::Deref, str::FromStr}; use std::{convert::TryFrom as _, fmt, ops::Deref, str::FromStr};

View File

@ -1,7 +1,4 @@
// Copyright © 2022 The Radicle Link Contributors // Copyright © 2022 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use std::collections::BTreeSet; use std::collections::BTreeSet;

View File

@ -1,7 +1,4 @@
// Copyright © 2022 The Radicle Link Contributors // Copyright © 2022 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use nonempty::NonEmpty; use nonempty::NonEmpty;

View File

@ -1,7 +1,4 @@
// Copyright © 2022 The Radicle Link Contributors // Copyright © 2022 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use thiserror::Error; use thiserror::Error;

View File

@ -1,7 +1,4 @@
// Copyright © 2022 The Radicle Link Contributors // Copyright © 2022 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use crate::{change_graph::ChangeGraph, CollaborativeObject, ObjectId, Store, TypeName}; use crate::{change_graph::ChangeGraph, CollaborativeObject, ObjectId, Store, TypeName};

View File

@ -1,7 +1,4 @@
// Copyright © 2022 The Radicle Link Contributors // Copyright © 2022 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
//! [`ChangeGraphInfo`] provides a useful debugging structure for //! [`ChangeGraphInfo`] provides a useful debugging structure for
//! representing a single [`crate::CollaborativeObject`]'s underlying //! representing a single [`crate::CollaborativeObject`]'s underlying

View File

@ -1,7 +1,4 @@
// Copyright © 2022 The Radicle Link Contributors // Copyright © 2022 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use crate::{change_graph::ChangeGraph, CollaborativeObject, Store, TypeName}; use crate::{change_graph::ChangeGraph, CollaborativeObject, Store, TypeName};

View File

@ -1,7 +1,4 @@
// Copyright © 2022 The Radicle Link Contributors // Copyright © 2022 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use crate::{ObjectId, Store, TypeName}; use crate::{ObjectId, Store, TypeName};

View File

@ -1,7 +1,4 @@
// Copyright © 2022 The Radicle Link Contributors // Copyright © 2022 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use git_ext::Oid; use git_ext::Oid;
use nonempty::NonEmpty; use nonempty::NonEmpty;

View File

@ -1,7 +1,4 @@
// Copyright © 2021 The Radicle Link Contributors // Copyright © 2021 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use std::{collections::HashMap, error::Error}; use std::{collections::HashMap, error::Error};

View File

@ -1,7 +1,4 @@
// Copyright © 2021 The Radicle Link Contributors // Copyright © 2021 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use std::{ use std::{
borrow::Borrow, borrow::Borrow,

View File

@ -1,7 +1,4 @@
// Copyright © 2022 The Radicle Link Contributors // Copyright © 2022 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
pub mod signatures; pub mod signatures;
pub use signatures::{Signature, Signatures}; pub use signatures::{Signature, Signatures};

View File

@ -1,7 +1,4 @@
// Copyright © 2019-2020 The Radicle Foundation <hello@radicle.foundation> // Copyright © 2019-2020 The Radicle Foundation <hello@radicle.foundation>
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use std::{ use std::{
collections::BTreeMap, collections::BTreeMap,

View File

@ -1,7 +1,4 @@
// Copyright © 2019-2020 The Radicle Foundation <hello@radicle.foundation> // Copyright © 2019-2020 The Radicle Foundation <hello@radicle.foundation>
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use radicle_crypto::ssh::ExtendedSignatureError; use radicle_crypto::ssh::ExtendedSignatureError;
use thiserror::Error; use thiserror::Error;

View File

@ -1,7 +1,4 @@
// Copyright © 2019-2020 The Radicle Foundation <hello@radicle.foundation> // Copyright © 2019-2020 The Radicle Foundation <hello@radicle.foundation>
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use git_trailers::{OwnedTrailer, Token, Trailer}; use git_trailers::{OwnedTrailer, Token, Trailer};
use radicle_git_ext as ext; use radicle_git_ext as ext;

View File

@ -1,7 +1,4 @@
// Copyright © 2022 The Radicle Link Contributors // Copyright © 2022 The Radicle Link Contributors
//
// This file is part of radicle-link, distributed under the GPLv3 with Radicle
// Linking Exception. For full terms see the included LICENSE file.
use std::{fmt, str::FromStr}; use std::{fmt, str::FromStr};