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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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