-
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.
- Loading branch information
1 parent
1feb6b5
commit f39971b
Showing
6 changed files
with
26 additions
and
10 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,16 @@ | ||
# Changes in `0.8.2`: | ||
|
||
* More cleanups and changes to code organization. | ||
* Fixes to Crates.io package publishing. | ||
|
||
# Changes in `0.8.1`: | ||
|
||
* Documentation updates. | ||
* Internal cleanups and changes to the code organization. | ||
|
||
# Changes in `0.8.0`: | ||
|
||
* The `title` sub-command has been renamed to `search`. | ||
* The `movies-dir` and `series-dir` sub-commands have been renamed to `scan-movies` and | ||
`scan-series`, respectively. | ||
* Documentation updates to the `db` module. |
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.1" | ||
version = "0.8.2" | ||
edition = "2021" | ||
description = "Query and sort information about movies and series" | ||
authors = ["Fred Morcos <[email protected]>"] | ||
|
@@ -17,8 +17,8 @@ name = "tvrank" | |
path = "src/main.rs" | ||
|
||
[dependencies] | ||
tvrank-utils = { path = "../utils" } | ||
tvrank-imdb = { path = "../imdb" } | ||
tvrank-utils = { path = "../utils", version = "0.8.2" } | ||
tvrank-imdb = { path = "../imdb", version = "0.8.2" } | ||
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-imdb" | ||
version = "0.8.1" | ||
version = "0.8.2" | ||
edition = "2021" | ||
description = "Query and sort information about movies and series" | ||
authors = ["Fred Morcos <[email protected]>"] | ||
|
@@ -16,7 +16,7 @@ exclude = ["/attic", "/.github", "/.gitignore", "/screencasts", "/screenshots"] | |
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
tvrank-utils = { path = "../utils" } | ||
tvrank-utils = { path = "../utils", version = "0.8.2" } | ||
aho-corasick = "0.7" | ||
derive_more = "0.99" | ||
deunicode = "1.3" | ||
|
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-utils" | ||
version = "0.8.1" | ||
version = "0.8.2" | ||
edition = "2021" | ||
description = "Query and sort information about movies and series" | ||
authors = ["Fred Morcos <[email protected]>"] | ||
|