From 5ace79ff09f47a41934b6efc299891706cf5cc89 Mon Sep 17 00:00:00 2001 From: Cai Bingjun <62678643+C-BJ@users.noreply.github.com> Date: Wed, 8 Jun 2022 17:55:57 +0000 Subject: [PATCH] Let the project page support GitHub's new ability to display open source licenses (#4966) Change _LICENSE-APACHE_ and _LICENSE-MIT_ file location Delete _LICENSE_ You can make the license in about on bevy's GitHub page display as **Apache-2.0, MIT licenses found** instead of **View license** --- LICENSE | 6 ------ docs/LICENSE-APACHE => LICENSE-APACHE | 0 docs/LICENSE-MIT => LICENSE-MIT | 0 README.md | 4 ++-- 4 files changed, 2 insertions(+), 8 deletions(-) delete mode 100644 LICENSE rename docs/LICENSE-APACHE => LICENSE-APACHE (100%) rename docs/LICENSE-MIT => LICENSE-MIT (100%) diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 9035c3b21a..0000000000 --- a/LICENSE +++ /dev/null @@ -1,6 +0,0 @@ -Bevy is dual-licensed under either - -* MIT License (docs/LICENSE-MIT or http://opensource.org/licenses/MIT) -* Apache License, Version 2.0 (docs/LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) - -at your option. diff --git a/docs/LICENSE-APACHE b/LICENSE-APACHE similarity index 100% rename from docs/LICENSE-APACHE rename to LICENSE-APACHE diff --git a/docs/LICENSE-MIT b/LICENSE-MIT similarity index 100% rename from docs/LICENSE-MIT rename to LICENSE-MIT diff --git a/README.md b/README.md index a5ca4d8180..41c2f9f0ae 100644 --- a/README.md +++ b/README.md @@ -100,8 +100,8 @@ Additionally, we would like to thank the [Amethyst](https://github.com/amethyst/ Bevy is free and open source! All code in this repository is dual-licensed under either: -* MIT License ([LICENSE-MIT](docs/LICENSE-MIT) or [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)) -* Apache License, Version 2.0 ([LICENSE-APACHE](docs/LICENSE-APACHE) or [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)) +* MIT License ([LICENSE-MIT](LICENSE-MIT) or [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)) +* Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)) at your option. This means you can select the license you prefer! This dual-licensing approach is the de-facto standard in the Rust ecosystem and there are [very good reasons](https://github.com/bevyengine/bevy/issues/2373) to include both.