From a50042d9d41798a498edcadde4008634172d7fbe Mon Sep 17 00:00:00 2001 From: Diggory Hardy Date: Mon, 17 Sep 2018 10:06:28 +0100 Subject: [PATCH] Follow up on #591: update authors and add new copyright where missed --- Cargo.toml | 2 +- LICENSE-MIT | 1 + examples/monte-carlo.rs | 1 + examples/monty-hall.rs | 1 + rand_core/Cargo.toml | 2 +- rand_core/LICENSE-MIT | 1 + rand_isaac/Cargo.toml | 2 +- rand_isaac/LICENSE-MIT | 1 + rand_isaac/src/isaac.rs | 1 + rand_isaac/src/isaac64.rs | 1 + rand_isaac/src/isaac_array.rs | 1 + rand_xorshift/Cargo.toml | 2 +- rand_xorshift/LICENSE-MIT | 3 ++- rand_xorshift/src/xorshift.rs | 1 + src/distributions/exponential.rs | 1 + src/distributions/gamma.rs | 1 + src/distributions/normal.rs | 1 + src/distributions/ziggurat_tables.rs | 1 + src/prng/chacha.rs | 1 + src/rngs/adapter/read.rs | 1 + src/rngs/adapter/reseeding.rs | 1 + utils/ziggurat_tables.py | 4 +++- 22 files changed, 25 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a0c1c525..230f1a5a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rand" version = "0.5.5" # NB: When modifying, also modify html_root_url in lib.rs -authors = ["The Rust Project Developers"] +authors = ["The Rand Project Developers", "The Rust Project Developers"] license = "MIT/Apache-2.0" readme = "README.md" repository = "https://github.com/rust-random/rand" diff --git a/LICENSE-MIT b/LICENSE-MIT index 39d4bdb5..d93b5baf 100644 --- a/LICENSE-MIT +++ b/LICENSE-MIT @@ -1,3 +1,4 @@ +Copyright 2018 Developers of the Rand project Copyright (c) 2014 The Rust Project Developers Permission is hereby granted, free of charge, to any diff --git a/examples/monte-carlo.rs b/examples/monte-carlo.rs index ae088268..91629968 100644 --- a/examples/monte-carlo.rs +++ b/examples/monte-carlo.rs @@ -1,3 +1,4 @@ +// Copyright 2018 Developers of the Rand project. // Copyright 2013-2018 The Rust Project Developers. // // Licensed under the Apache License, Version 2.0 or the MIT license