-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #86 from fredmorcos/0.8.5-pr
Version 0.8.5
- Loading branch information
Showing
5 changed files
with
16 additions
and
6 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Changes in `0.8.5`: | ||
|
||
* Support for the new "Experimental" IMDb title genre. | ||
* Refactored the internal library to better support multiple storage backends. | ||
* The `Service` object can now accept the progress closure by move. | ||
* Many tests were added to the internal library. | ||
* Simplified and improved library API. | ||
* Cleanups to how library errors are created and handled. | ||
* More modular repository with different crates for the library and cli. | ||
* Dependency version updates. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tvrank-cli" | ||
version = "0.8.4" | ||
version = "0.8.5" | ||
edition = "2021" | ||
description = "Query and sort information about movies and series" | ||
authors = ["Fred Morcos <[email protected]>"] | ||
|
@@ -16,7 +16,7 @@ name = "tvrank" | |
path = "src/main.rs" | ||
|
||
[dependencies] | ||
tvrank = { path = "../lib", version = "0.8.4" } | ||
tvrank = { path = "../lib", version = "0.8.5" } | ||
indicatif = "0.16" | ||
log = "0.4" | ||
env_logger = "0.9" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tvrank" | ||
version = "0.8.4" | ||
version = "0.8.5" | ||
edition = "2021" | ||
description = "Query and sort information about movies and series" | ||
authors = ["Fred Morcos <[email protected]>"] | ||
|