From 9e694d8e139fbc0689d4074e626e952ed3438310 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Sch=C3=B6nauer?= <37108907+DottoDev@users.noreply.github.com> Date: Wed, 26 Oct 2022 11:33:43 +0000 Subject: [PATCH] Added last version note (#75) --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/main.rs | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ca879d05..48e88e08 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1909,7 +1909,7 @@ dependencies = [ [[package]] name = "topgrade-rs" -version = "10.0.0" +version = "10.0.1" dependencies = [ "anyhow", "cfg-if", diff --git a/Cargo.toml b/Cargo.toml index 15389834..80e83330 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ categories = ["os"] keywords = ["upgrade", "update"] license-file = "LICENSE" repository = "https://github.com/topgrade-rs/topgrade" -version = "10.0.0" +version = "10.0.1" authors = ["Roey Darwish Dror ", "Thomas Schönauer "] exclude = ["doc/screenshot.gif"] edition = "2021" diff --git a/src/main.rs b/src/main.rs index 04e6eeb7..2b9080b5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -486,6 +486,9 @@ fn run() -> Result<()> { } fn main() { + print_info("Due to r-darwish giving this project access to the original topgrade crate, this crate will no longer receive any updates beyond the 10.0.1 update. To install the supported version, please run the following command: \n"); + println!("cargo uninstall topgrade-rs"); + println!("cargo install topgrade"); match run() { Ok(()) => { exit(0);