Skip to content

Commit

Permalink
Version 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fredmorcos committed Apr 24, 2022
1 parent dd70bb6 commit 094b264
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tvrank"
version = "0.7.8"
version = "0.8.0"
edition = "2021"
description = "Query and sort information about movies and series"
authors = ["Fred Morcos <[email protected]>"]
Expand Down
4 changes: 2 additions & 2 deletions 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.7.8/tvrank/)
[![docs.rs](https://img.shields.io/docsrs/tvrank?style=for-the-badge)](https://docs.rs/tvrank/0.8.0/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 Expand Up @@ -288,7 +288,7 @@ Add the dependency to your `Cargo.toml`:

```toml
[dependencies]
tvrank = "0.7"
tvrank = "0.8"
```

Or, using `cargo add`:
Expand Down
29 changes: 29 additions & 0 deletions changelogs/0.8.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
* 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 release fixes an issue with the `mark` sub-command writing in correct `tvrank.json`
files. The incorrect `tvrank.json` files looked like this:

```json
{
"imdb": {
"id": {
"title_id": "ttXXXXX"
}
}
}
```

While the correct `tvrank.json` files should like this:

```json
{
"imdb": {
"id": "ttXXXXXX"
}
}
```

* This release also fixes an issue (#54) with IMDB IDs that end with non-numeric
characters being accepted. Example: `ttXXXXXabc` where XXXX are digits.

0 comments on commit 094b264

Please sign in to comment.