diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e3463c..6805049 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.3.2 (2017-05-05) +- check for invalid grant when fetching content too (really fixes #7) + ## 0.3.1 (2017-05-05) - automatically check if grant is still valid and refresh if necessary (fixes #7) diff --git a/Cargo.lock b/Cargo.lock index 6bb8a6f..fa04b6c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "gog-sync" -version = "0.3.1" +version = "0.3.2" dependencies = [ "chrono 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.24.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index bb767a8..a8eb4b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gog-sync" -version = "0.3.1" +version = "0.3.2" authors = ["Sebastian Hugentobler "] description = "Synchronizes a GOG library with a local folder." documentation = "https://docs.rs/crate/gog-sync" diff --git a/src/main.rs b/src/main.rs index 5f9a936..c6070c8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -28,7 +28,7 @@ fn main() { env_logger::init().unwrap(); let matches = App::new("Gog Synchronizer") - .version("0.3.1") + .version("0.3.2") .author("Sebastian Hugentobler ") .about("Synchronizes your gog library to a local folder.") .arg(Arg::with_name("game-storage")