diff --git a/RELEASE.md b/RELEASE.md index ee825242..a2d16734 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,9 @@ # dcli Release Notes +## v0.8.91 November 1, 2022 + +- Workaround issue where system could get in state where it would not clear a previous activity from the queue, forcing a reload of all data. + ## v0.8.9 November 1, 2022 - dclisync when adding members via group-id / clan, skip members who do not have a valid Bungie name / code. diff --git a/src/Cargo.lock b/src/Cargo.lock index 6acf16c2..ed97f249 100644 --- a/src/Cargo.lock +++ b/src/Cargo.lock @@ -296,7 +296,7 @@ dependencies = [ [[package]] name = "dcli" -version = "0.8.9" +version = "0.8.91" dependencies = [ "chrono", "crossterm", @@ -315,7 +315,7 @@ dependencies = [ [[package]] name = "dclia" -version = "0.8.9" +version = "0.8.91" dependencies = [ "dcli", "structopt", @@ -324,7 +324,7 @@ dependencies = [ [[package]] name = "dcliad" -version = "0.8.9" +version = "0.8.91" dependencies = [ "dcli", "structopt", @@ -333,7 +333,7 @@ dependencies = [ [[package]] name = "dcliah" -version = "0.8.9" +version = "0.8.91" dependencies = [ "chrono", "dcli", @@ -344,7 +344,7 @@ dependencies = [ [[package]] name = "dclif" -version = "0.8.9" +version = "0.8.91" dependencies = [ "chrono", "dcli", @@ -355,7 +355,7 @@ dependencies = [ [[package]] name = "dclim" -version = "0.8.9" +version = "0.8.91" dependencies = [ "dcli", "reqwest", @@ -369,7 +369,7 @@ dependencies = [ [[package]] name = "dclistat" -version = "0.8.9" +version = "0.8.91" dependencies = [ "chrono", "dcli", @@ -380,7 +380,7 @@ dependencies = [ [[package]] name = "dclisync" -version = "0.8.9" +version = "0.8.91" dependencies = [ "dcli", "structopt", @@ -389,7 +389,7 @@ dependencies = [ [[package]] name = "dclitime" -version = "0.8.9" +version = "0.8.91" dependencies = [ "chrono", "dcli", diff --git a/src/dcli/Cargo.toml b/src/dcli/Cargo.toml index 00092536..19ef2abd 100644 --- a/src/dcli/Cargo.toml +++ b/src/dcli/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dcli" #version -version = "0.8.9" +version = "0.8.91" authors = ["Mike Chambers "] edition = "2018" description = "Library for the dcli collection of command line tools for Destiny 2." diff --git a/src/dclia/Cargo.toml b/src/dclia/Cargo.toml index 15673e1f..26aab571 100644 --- a/src/dclia/Cargo.toml +++ b/src/dclia/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dclia" #version -version = "0.8.9" +version = "0.8.91" authors = ["Mike Chambers "] description = "Command line tool for retrieving information on current activity for specified player character." homepage = "https://www.mikechambers.com" diff --git a/src/dcliad/Cargo.toml b/src/dcliad/Cargo.toml index 618b500e..725eaf4b 100644 --- a/src/dcliad/Cargo.toml +++ b/src/dcliad/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dcliad" #version -version = "0.8.9" +version = "0.8.91" authors = ["Mike Chambers "] edition = "2018" description = "Command line tool for viewing Destiny 2 activity details." diff --git a/src/dcliah/Cargo.toml b/src/dcliah/Cargo.toml index c6f5ca68..f2fd683e 100644 --- a/src/dcliah/Cargo.toml +++ b/src/dcliah/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dcliah" #version -version = "0.8.9" +version = "0.8.91" authors = ["Mike Chambers "] edition = "2018" description = "Command line tool for viewing Destiny 2 activity history." diff --git a/src/dclif/Cargo.toml b/src/dclif/Cargo.toml index 40343f20..74c0904f 100644 --- a/src/dclif/Cargo.toml +++ b/src/dclif/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dclif" #version -version = "0.8.9" +version = "0.8.91" authors = ["Mike Chambers "] edition = "2018" description = "Command line tool for querying specific Destiny 2 pvp stats." diff --git a/src/dclim/Cargo.toml b/src/dclim/Cargo.toml index 87d6d38e..fae93a4a 100644 --- a/src/dclim/Cargo.toml +++ b/src/dclim/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dclim" #version -version = "0.8.9" +version = "0.8.91" authors = ["Mike Chambers "] edition = "2018" description = "Command line tool for managing and syncing the remote Destiny 2 API manifest database." diff --git a/src/dclistat/Cargo.toml b/src/dclistat/Cargo.toml index 5d75ee32..70d0885e 100644 --- a/src/dclistat/Cargo.toml +++ b/src/dclistat/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dclistat" #version -version = "0.8.9" +version = "0.8.91" authors = ["Mike Chambers "] edition = "2018" description = "Command line tool for querying specific Destiny 2 pvp stats." diff --git a/src/dclisync/Cargo.toml b/src/dclisync/Cargo.toml index 188c7053..7b212f00 100644 --- a/src/dclisync/Cargo.toml +++ b/src/dclisync/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dclisync" #version -version = "0.8.9" +version = "0.8.91" authors = ["Mike Chambers "] edition = "2018" description = "Command line tool for downloading and syncing Destiny 2 Crucible activity history." diff --git a/src/dclitime/Cargo.toml b/src/dclitime/Cargo.toml index 54aaed37..00bd00b4 100644 --- a/src/dclitime/Cargo.toml +++ b/src/dclitime/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dclitime" #version -version = "0.8.9" +version = "0.8.91" authors = ["Mike Chambers "] edition = "2018" description = "Command line tool for retrieving Destiny 2 related date / time stamps"