From a364d55bab76a31557e8d4918253ec490fdf8750 Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Mon, 7 Jan 2019 10:36:42 -0500 Subject: [PATCH] Update cargo toml with release docs and remove appveyor badge This change updates the docs linked from crates.io to point to the latest release instead of just master which may have diverged from the last release. This also removes the appveyor badge since it is no longer used so therefore it is no longer accurate. Also adds small formatting changes. --- Cargo.toml | 8 +++++--- amethyst_animation/Cargo.toml | 2 +- amethyst_assets/Cargo.toml | 2 +- amethyst_audio/Cargo.toml | 2 +- amethyst_config/Cargo.toml | 2 +- amethyst_controls/Cargo.toml | 2 +- amethyst_core/Cargo.toml | 2 +- amethyst_derive/Cargo.toml | 2 +- amethyst_gltf/Cargo.toml | 2 +- amethyst_input/Cargo.toml | 2 +- amethyst_locale/Cargo.toml | 2 +- amethyst_network/Cargo.toml | 2 +- amethyst_renderer/Cargo.toml | 2 +- amethyst_ui/Cargo.toml | 2 +- amethyst_utils/Cargo.toml | 2 +- book/src/intro.md | 2 +- book/src/pong-tutorial/pong-tutorial-01.md | 6 +++--- book/src/pong-tutorial/pong-tutorial-02.md | 2 +- book/src/pong-tutorial/pong-tutorial-03.md | 2 +- book/src/pong-tutorial/pong-tutorial-04.md | 2 +- 20 files changed, 26 insertions(+), 24 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d09fa77010..ae2a17d045 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ exclude = ["examples/*", "book/*"] keywords = ["game", "engine", "sdk", "amethyst"] categories = ["game-engines"] -documentation = "https://www.amethyst.rs/doc/master/doc/amethyst" +documentation = "https://www.amethyst.rs/doc/latest/doc/amethyst" homepage = "https://www.amethyst.rs/" repository = "https://github.com/amethyst/amethyst" @@ -16,7 +16,6 @@ readme = "README.md" license = "MIT/Apache-2.0" [badges] -appveyor = { repository = "amethyst/amethyst", branch = "master" } travis-ci = { repository = "amethyst/amethyst", branch = "master" } [features] @@ -230,4 +229,7 @@ name = "auto_fov" path = "examples/auto_fov/main.rs" [workspace] -members = ["amethyst_gltf", "tests/amethyst_test"] +members = [ + "amethyst_gltf", + "tests/amethyst_test" +] diff --git a/amethyst_animation/Cargo.toml b/amethyst_animation/Cargo.toml index a621b4844e..b05fc510cf 100644 --- a/amethyst_animation/Cargo.toml +++ b/amethyst_animation/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" description = "Animation support for Amethyst" keywords = ["game", "engine", "animation", "3d", "amethyst"] -documentation = "https://www.amethyst.rs/doc/master/doc/amethyst_animation/" +documentation = "https://www.amethyst.rs/doc/latest/doc/amethyst_animation/" homepage = "https://www.amethyst.rs/" repository = "https://github.com/amethyst/amethyst" diff --git a/amethyst_assets/Cargo.toml b/amethyst_assets/Cargo.toml index fe040c4595..dcb9cf9a2a 100644 --- a/amethyst_assets/Cargo.toml +++ b/amethyst_assets/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT/Apache-2.0" keywords = ["game", "asset", "resource", "management", "amethyst"] categories = ["filesystem"] -documentation = "https://www.amethyst.rs/doc/master/doc/amethyst/" +documentation = "https://www.amethyst.rs/doc/latest/doc/amethyst/" homepage = "https://www.amethyst.rs/" repository = "https://github.com/amethyst/amethyst" diff --git a/amethyst_audio/Cargo.toml b/amethyst_audio/Cargo.toml index c3be0482c1..d22e52a310 100644 --- a/amethyst_audio/Cargo.toml +++ b/amethyst_audio/Cargo.toml @@ -8,7 +8,7 @@ exclude = ["examples/*"] keywords = ["game", "engine", "audio","amethyst"] categories = ["audio"] -documentation = "https://www.amethyst.rs/doc/master/doc/amethyst_audio/" +documentation = "https://www.amethyst.rs/doc/latest/doc/amethyst_audio/" homepage = "https://www.amethyst.rs/" repository = "https://github.com/amethyst/amethyst" diff --git a/amethyst_config/Cargo.toml b/amethyst_config/Cargo.toml index f8926a381f..6e2cbdc891 100644 --- a/amethyst_config/Cargo.toml +++ b/amethyst_config/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" description = "Loading from .ron files into Rust structures with defaults to prevent hard errors." exclude = ["examples/*"] -documentation = "https://www.amethyst.rs/doc/master/doc/amethyst_config/" +documentation = "https://www.amethyst.rs/doc/latest/doc/amethyst_config/" homepage = "https://www.amethyst.rs/" repository = "https://github.com/amethyst/amethyst" diff --git a/amethyst_controls/Cargo.toml b/amethyst_controls/Cargo.toml index cf034ead21..5a0541a208 100644 --- a/amethyst_controls/Cargo.toml +++ b/amethyst_controls/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Joël Lupien "] edition = "2018" description = "Amethyst controls" -documentation = "https://www.amethyst.rs/doc/master/doc/amethyst_controls/" +documentation = "https://www.amethyst.rs/doc/latest/doc/amethyst_controls/" homepage = "https://www.amethyst.rs/" repository = "https://github.com/amethyst/amethyst" diff --git a/amethyst_core/Cargo.toml b/amethyst_core/Cargo.toml index c12cef47c0..1c4ce2234a 100644 --- a/amethyst_core/Cargo.toml +++ b/amethyst_core/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Simon Rönnberg "] edition = "2018" description = "Amethyst core" -documentation = "https://www.amethyst.rs/doc/master/doc/amethyst_core/" +documentation = "https://www.amethyst.rs/doc/latest/doc/amethyst_core/" homepage = "https://www.amethyst.rs/" repository = "https://github.com/amethyst/amethyst" diff --git a/amethyst_derive/Cargo.toml b/amethyst_derive/Cargo.toml index 12b794ff78..147cba9221 100644 --- a/amethyst_derive/Cargo.toml +++ b/amethyst_derive/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Simon Rönnberg "] edition = "2018" description = "Amethyst derive" -documentation = "https://www.amethyst.rs/doc/master/doc/amethyst_derive/" +documentation = "https://www.amethyst.rs/doc/latest/doc/amethyst_derive/" homepage = "https://www.amethyst.rs/" repository = "https://github.com/amethyst/amethyst" diff --git a/amethyst_gltf/Cargo.toml b/amethyst_gltf/Cargo.toml index 3a70fa7252..2a15e50387 100644 --- a/amethyst_gltf/Cargo.toml +++ b/amethyst_gltf/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Rhuagh "] edition = "2018" description = "GLTF asset loading" -documentation = "https://www.amethyst.rs/doc/master/doc/amethyst_gltf/" +documentation = "https://www.amethyst.rs/doc/latest/doc/amethyst_gltf/" homepage = "https://www.amethyst.rs/" repository = "https://github.com/amethyst/amethyst" diff --git a/amethyst_input/Cargo.toml b/amethyst_input/Cargo.toml index e4702da449..4184896325 100644 --- a/amethyst_input/Cargo.toml +++ b/amethyst_input/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Rhuagh ", "Xaeroxe "] edition = "2018" description = "Input rebinding " -documentation = "https://www.amethyst.rs/doc/master/doc/amethyst_input/" +documentation = "https://www.amethyst.rs/doc/latest/doc/amethyst_input/" homepage = "https://www.amethyst.rs/" repository = "https://github.com/amethyst/amethyst" diff --git a/amethyst_locale/Cargo.toml b/amethyst_locale/Cargo.toml index c9aac8dd8a..fb7a884dac 100644 --- a/amethyst_locale/Cargo.toml +++ b/amethyst_locale/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT/Apache-2.0" keywords = ["game", "localisation", "resource", "management", "amethyst"] categories = ["filesystem,localisation"] -documentation = "https://www.amethyst.rs/doc/master/doc/amethyst/" +documentation = "https://www.amethyst.rs/doc/latest/doc/amethyst_locale/" homepage = "https://www.amethyst.rs/" repository = "https://github.com/amethyst/amethyst" diff --git a/amethyst_network/Cargo.toml b/amethyst_network/Cargo.toml index edcd9261d1..42e71ccaa9 100644 --- a/amethyst_network/Cargo.toml +++ b/amethyst_network/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["networking", "specs", "ecs", "amethyst", "serialization"] categories = ["game-engines"] readme = "README.md" -documentation = "https://www.amethyst.rs/doc/master/doc/amethyst_network/index.html" +documentation = "https://www.amethyst.rs/doc/latest/doc/amethyst_network/index.html" homepage = "https://www.amethyst.rs/" repository = "https://github.com/amethyst/amethyst" license = "MIT/Apache-2.0" diff --git a/amethyst_renderer/Cargo.toml b/amethyst_renderer/Cargo.toml index c63e6c5bc7..cb73136a02 100644 --- a/amethyst_renderer/Cargo.toml +++ b/amethyst_renderer/Cargo.toml @@ -8,7 +8,7 @@ exclude = ["examples/*"] keywords = ["game", "engine", "renderer", "3d", "amethyst"] categories = ["rendering", "rendering::engine"] -documentation = "https://www.amethyst.rs/doc/master/doc/amethyst_renderer/" +documentation = "https://www.amethyst.rs/doc/latest/doc/amethyst_renderer/" homepage = "https://www.amethyst.rs/" repository = "https://github.com/amethyst/amethyst" diff --git a/amethyst_ui/Cargo.toml b/amethyst_ui/Cargo.toml index 6d0d0138fd..ed3ae2fd5f 100644 --- a/amethyst_ui/Cargo.toml +++ b/amethyst_ui/Cargo.toml @@ -7,7 +7,7 @@ description = "Amethyst UI crate" keywords = ["ui", "specs", "ecs", "amethyst"] categories = ["game-engines"] -documentation = "https://www.amethyst.rs/doc/master/doc/amethyst_ui/" +documentation = "https://www.amethyst.rs/doc/latest/doc/amethyst_ui/" homepage = "https://www.amethyst.rs/" repository = "https://github.com/amethyst/amethyst" license = "MIT/Apache-2.0" diff --git a/amethyst_utils/Cargo.toml b/amethyst_utils/Cargo.toml index 748eb39309..4d2db76491 100644 --- a/amethyst_utils/Cargo.toml +++ b/amethyst_utils/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Simon Rönnberg ", "Joël Lupien