push version

This commit is contained in:
Sebastian Hugentobler 2017-05-05 18:09:25 +02:00
parent 32a0fb7eff
commit e5340e1e11
4 changed files with 6 additions and 3 deletions

View File

@ -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)

2
Cargo.lock generated
View File

@ -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)",

View File

@ -1,6 +1,6 @@
[package]
name = "gog-sync"
version = "0.3.1"
version = "0.3.2"
authors = ["Sebastian Hugentobler <sebastian@vanwa.ch>"]
description = "Synchronizes a GOG library with a local folder."
documentation = "https://docs.rs/crate/gog-sync"

View File

@ -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 <sebastian@vanwa.ch>")
.about("Synchronizes your gog library to a local folder.")
.arg(Arg::with_name("game-storage")