Skip to content

Commit

Permalink
Version 0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fredmorcos committed Apr 26, 2022
1 parent 22fcb0b commit 8e79acc
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 6 deletions.
4 changes: 2 additions & 2 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.3/tvrank/)
[![docs.rs](https://img.shields.io/docsrs/tvrank?style=for-the-badge)](https://docs.rs/tvrank/0.8.4/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
26 changes: 26 additions & 0 deletions changelogs/0.8.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Changes in `0.8.4`:

* Integration fixes.

# Changes in `0.8.3`:

* Even more cleanups and change to code organization.
* The `TVrank` project is now split into a library crate called `tvrank` and a
command-line crate called `tvrank-cli` which provides an executable called `tvrank`.

# 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.
4 changes: 2 additions & 2 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.3"
version = "0.8.4"
edition = "2021"
description = "Query and sort information about movies and series"
authors = ["Fred Morcos <[email protected]>"]
Expand All @@ -16,7 +16,7 @@ name = "tvrank"
path = "src/main.rs"

[dependencies]
tvrank = { path = "../lib", version = "0.8.3" }
tvrank = { path = "../lib", version = "0.8.4" }
indicatif = "0.16"
log = "0.4"
env_logger = "0.9"
Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tvrank"
version = "0.8.3"
version = "0.8.4"
edition = "2021"
description = "Query and sort information about movies and series"
authors = ["Fred Morcos <[email protected]>"]
Expand Down

0 comments on commit 8e79acc

Please sign in to comment.