Skip to content

Commit

Permalink
Version 0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fredmorcos committed Apr 24, 2022
1 parent 1feb6b5 commit f39971b
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Release](https://img.shields.io/github/workflow/status/fredmorcos/tvrank/Release?label=Release&style=for-the-badge)](https://github.com/fredmorcos/tvrank/releases)
[![CI](https://img.shields.io/github/workflow/status/fredmorcos/tvrank/CI?label=Master&style=for-the-badge)](https://github.com/fredmorcos/tvrank/actions)
</br>
[![docs.rs](https://img.shields.io/docsrs/tvrank?style=for-the-badge)](https://docs.rs/tvrank/0.8.1/tvrank/)
[![docs.rs](https://img.shields.io/docsrs/tvrank?style=for-the-badge)](https://docs.rs/tvrank/0.8.2/tvrank/)
[![Github Open Issues](https://img.shields.io/github/issues-raw/fredmorcos/tvrank?style=for-the-badge)](https://github.com/fredmorcos/tvrank/issues)
[![Github Closed Issues](https://img.shields.io/github/issues-closed-raw/fredmorcos/tvrank?style=for-the-badge)](https://github.com/fredmorcos/tvrank/issues?q=is%3Aissue+is%3Aclosed)
[![Github Open Pull Requests](https://img.shields.io/github/issues-pr-raw/fredmorcos/tvrank?style=for-the-badge)](https://github.com/fredmorcos/tvrank/pulls)
Expand Down
16 changes: 16 additions & 0 deletions changelogs/0.8.2.md
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.
6 changes: 3 additions & 3 deletions cli/Cargo.toml
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]>"]
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions imdb/Cargo.toml
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]>"]
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion utils/Cargo.toml
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]>"]
Expand Down

0 comments on commit f39971b

Please sign in to comment.