Merge branch '7-access-token-expired' into 'master'
push version Closes #7 See merge request !11
This commit is contained in:
commit
3f6596bbfd
@ -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)
|
## 0.3.1 (2017-05-05)
|
||||||
- automatically check if grant is still valid and refresh if necessary (fixes #7)
|
- automatically check if grant is still valid and refresh if necessary (fixes #7)
|
||||||
|
|
||||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -1,6 +1,6 @@
|
|||||||
[root]
|
[root]
|
||||||
name = "gog-sync"
|
name = "gog-sync"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"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)",
|
"clap 2.24.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "gog-sync"
|
name = "gog-sync"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
authors = ["Sebastian Hugentobler <sebastian@vanwa.ch>"]
|
authors = ["Sebastian Hugentobler <sebastian@vanwa.ch>"]
|
||||||
description = "Synchronizes a GOG library with a local folder."
|
description = "Synchronizes a GOG library with a local folder."
|
||||||
documentation = "https://docs.rs/crate/gog-sync"
|
documentation = "https://docs.rs/crate/gog-sync"
|
||||||
|
@ -28,7 +28,7 @@ fn main() {
|
|||||||
env_logger::init().unwrap();
|
env_logger::init().unwrap();
|
||||||
|
|
||||||
let matches = App::new("Gog Synchronizer")
|
let matches = App::new("Gog Synchronizer")
|
||||||
.version("0.3.1")
|
.version("0.3.2")
|
||||||
.author("Sebastian Hugentobler <sebastian@vanwa.ch>")
|
.author("Sebastian Hugentobler <sebastian@vanwa.ch>")
|
||||||
.about("Synchronizes your gog library to a local folder.")
|
.about("Synchronizes your gog library to a local folder.")
|
||||||
.arg(Arg::with_name("game-storage")
|
.arg(Arg::with_name("game-storage")
|
||||||
|
Loading…
Reference in New Issue
Block a user