From 35c1fff22ebbcf2a8311f6bf1ac4b2a195e5051f Mon Sep 17 00:00:00 2001 From: Nathan Stocks Date: Wed, 19 Aug 2020 10:34:07 -0600 Subject: [PATCH] First stage of deprecation, and bump to version 0.11.0 --- Cargo.toml | 2 +- README.md | 6 ++++++ src/main.rs | 2 ++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 91fbc57..58bee90 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "amethyst_tools" -version = "0.10.0" +version = "0.11.0" authors = ["Eyal Kalderon "] description = "Game development tools for the Amethyst engine" keywords = ["game", "engine", "tool", "editor", "amethyst"] diff --git a/README.md b/README.md index d1fbcc6..f6bcfba 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,9 @@ +# DEPRECATED + +This project has been deprecated. For more details please see [this forum post]. + +[this forum post]: https://community.amethyst.rs/t/end-of-life-for-amethyst-tools-the-cli/1656 + # Amethyst Tools [![Build Status][s1]][tc] [![Crates.io][s2]][ci] [![MIT/Apache License][s3]][li] diff --git a/src/main.rs b/src/main.rs index f85ce05..69142cf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -7,6 +7,8 @@ use amethyst_cli as cli; use clap::{App, AppSettings, Arg, ArgMatches, SubCommand}; fn main() { + eprintln!("WARNING! amethyst_tools has been deprecated and will stop working in future versions."); + eprintln!("For more details please see https://community.amethyst.rs/t/end-of-life-for-amethyst-tools-the-cli/1656"); let matches = App::new("Amethyst CLI") .author("Created by Amethyst developers") .version(env!("CARGO_PKG_VERSION"))