From 2b00d12f47ccb02d001af9c51cbfed778ac5f8df Mon Sep 17 00:00:00 2001 From: Auyer Date: Sun, 27 Nov 2022 20:37:32 -0300 Subject: [PATCH] bump version --- README.md | 23 ++++++++++++++++++++++- libprotonup/Cargo.toml | 4 ++-- protonup-rs/Cargo.toml | 2 +- 3 files changed, 25 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index eb003c4..c992d49 100644 --- a/README.md +++ b/README.md @@ -21,9 +21,29 @@ To run a quick update and get the latest GE Proton version, you can use the quic protonup-rs -q ``` +## Installing: + +Get the latest binary: +[Download link](https://github.com/auyer/Protonup-rs/releases/latest/download/protonup-rs-linux-amd64.zip) + +It is a single binary. You can just run it, or add it to your path so you can call it from anywhere. + +Quick way to add it to your path: +``` +cd Downloads +sudo unzip protonup-rs-linux-amd64.zip -d /usr/bin +``` + + ## Building from source -Clone repo +You can install from source using the last released version in Crates.io: + +``` +cargo install protonup-rs +``` + +Or clone repo: ```bash cd protonup-rs @@ -31,6 +51,7 @@ cargo build -p protonup-rs --release mv ./target/release/protonup-rs "your path" ``` + ## GUI Not ready for usage. diff --git a/libprotonup/Cargo.toml b/libprotonup/Cargo.toml index 9357423..5b933af 100644 --- a/libprotonup/Cargo.toml +++ b/libprotonup/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libprotonup" -version = "0.2.0" +version = "0.3.0" edition = "2021" authors = ["Auyer "] repository = "https://github.com/auyer/protonup-rs" @@ -15,7 +15,7 @@ flate2 = "1.0" futures-util = "0.3" hex = "0.4" hex-literal = "0.3" -reqwest = { version = "0.11.12", default-features = false, features = [ +reqwest = { version = "0.11", default-features = false, features = [ "rustls-tls", "stream", "rustls", diff --git a/protonup-rs/Cargo.toml b/protonup-rs/Cargo.toml index 2578d0a..946da64 100644 --- a/protonup-rs/Cargo.toml +++ b/protonup-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "protonup-rs" -version = "0.2.0" +version = "0.3.0" edition = "2021" authors = ["Auyer "] repository = "https://github.com/auyer/protonup-rs"