Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Follow up on #591: update authors and add new copyright where missed #611

Merged
merged 1 commit into from Sep 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion 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"
Expand Down
1 change: 1 addition & 0 deletions 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
Expand Down
1 change: 1 addition & 0 deletions 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 <LICENSE-APACHE or
Expand Down
1 change: 1 addition & 0 deletions examples/monty-hall.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 <LICENSE-APACHE or
Expand Down
2 changes: 1 addition & 1 deletion rand_core/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "rand_core"
version = "0.2.1" # 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"
Expand Down
1 change: 1 addition & 0 deletions rand_core/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
Expand Down
2 changes: 1 addition & 1 deletion rand_isaac/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "rand_isaac"
version = "0.1.0" # 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"
Expand Down
1 change: 1 addition & 0 deletions rand_isaac/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
Expand Down
1 change: 1 addition & 0 deletions rand_isaac/src/isaac.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 <LICENSE-APACHE or
Expand Down
1 change: 1 addition & 0 deletions rand_isaac/src/isaac64.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 <LICENSE-APACHE or
Expand Down
1 change: 1 addition & 0 deletions rand_isaac/src/isaac_array.rs
@@ -1,3 +1,4 @@
// Copyright 2018 Developers of the Rand project.
// Copyright 2017-2018 The Rust Project Developers.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
Expand Down
2 changes: 1 addition & 1 deletion rand_xorshift/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "rand_xorshift"
version = "0.1.0" # 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"
Expand Down
3 changes: 2 additions & 1 deletion rand_xorshift/LICENSE-MIT
@@ -1,4 +1,5 @@
Copyright (c) 2018 The Rust Project Developers
Copyright 2018 Developers of the Rand project
Copyright (c) 2014 The Rust Project Developers

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
1 change: 1 addition & 0 deletions rand_xorshift/src/xorshift.rs
@@ -1,3 +1,4 @@
// Copyright 2018 Developers of the Rand project.
// Copyright 2017 The Rust Project Developers.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
Expand Down
1 change: 1 addition & 0 deletions src/distributions/exponential.rs
@@ -1,3 +1,4 @@
// Copyright 2018 Developers of the Rand project.
// Copyright 2013 The Rust Project Developers.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
Expand Down
1 change: 1 addition & 0 deletions src/distributions/gamma.rs
@@ -1,3 +1,4 @@
// Copyright 2018 Developers of the Rand project.
// Copyright 2013 The Rust Project Developers.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
Expand Down
1 change: 1 addition & 0 deletions src/distributions/normal.rs
@@ -1,3 +1,4 @@
// Copyright 2018 Developers of the Rand project.
// Copyright 2013 The Rust Project Developers.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
Expand Down
1 change: 1 addition & 0 deletions src/distributions/ziggurat_tables.rs
@@ -1,3 +1,4 @@
// Copyright 2018 Developers of the Rand project.
// Copyright 2013 The Rust Project Developers.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
Expand Down
1 change: 1 addition & 0 deletions src/prng/chacha.rs
@@ -1,3 +1,4 @@
// Copyright 2018 Developers of the Rand project.
// Copyright 2014 The Rust Project Developers.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
Expand Down
1 change: 1 addition & 0 deletions src/rngs/adapter/read.rs
@@ -1,3 +1,4 @@
// Copyright 2018 Developers of the Rand project.
// Copyright 2013 The Rust Project Developers.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
Expand Down
1 change: 1 addition & 0 deletions src/rngs/adapter/reseeding.rs
@@ -1,3 +1,4 @@
// Copyright 2018 Developers of the Rand project.
// Copyright 2013 The Rust Project Developers.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
Expand Down
4 changes: 3 additions & 1 deletion utils/ziggurat_tables.py
@@ -1,5 +1,6 @@
#!/usr/bin/env python
#
# Copyright 2018 Developers of the Rand project.
# Copyright 2013 The Rust Project Developers.
#
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
Expand Down Expand Up @@ -103,7 +104,8 @@ def render_table(name, values):


with open('ziggurat_tables.rs', 'w') as f:
f.write('''// Copyright 2013 The Rust Project Developers.
f.write('''// Copyright 2018 Developers of the Rand project.
// Copyright 2013 The Rust Project Developers.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
Expand Down