From dfaf209cdc4484136b9eef411ffb4d809ed0d1b7 Mon Sep 17 00:00:00 2001 From: Fred Morcos Date: Sat, 31 Dec 2022 18:08:45 +0100 Subject: [PATCH] Version 0.8.5 --- Cargo.lock | 4 ++-- README.md | 2 +- changelogs/0.8.5.md | 10 ++++++++++ cli/Cargo.toml | 4 ++-- lib/Cargo.toml | 2 +- 5 files changed, 16 insertions(+), 6 deletions(-) create mode 100644 changelogs/0.8.5.md diff --git a/Cargo.lock b/Cargo.lock index 2d28c99..e8aa29f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1519,7 +1519,7 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "tvrank" -version = "0.8.4" +version = "0.8.5" dependencies = [ "aho-corasick", "atoi", @@ -1543,7 +1543,7 @@ dependencies = [ [[package]] name = "tvrank-cli" -version = "0.8.4" +version = "0.8.5" dependencies = [ "atoi", "clap", diff --git a/README.md b/README.md index 17a030d..f44affd 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Crates.io](https://img.shields.io/crates/v/tvrank?style=for-the-badge)](https://crates.io/crates/tvrank) [![CI](https://img.shields.io/github/actions/workflow/status/fredmorcos/tvrank/build-test-publish.yml?label=Main&style=for-the-badge)](https://github.com/fredmorcos/tvrank/actions)
-[![docs.rs](https://img.shields.io/docsrs/tvrank?style=for-the-badge)](https://docs.rs/tvrank/0.8.4/tvrank/) +[![docs.rs](https://img.shields.io/docsrs/tvrank?style=for-the-badge)](https://docs.rs/tvrank/0.8.5/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) diff --git a/changelogs/0.8.5.md b/changelogs/0.8.5.md new file mode 100644 index 0000000..5d528b9 --- /dev/null +++ b/changelogs/0.8.5.md @@ -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. diff --git a/cli/Cargo.toml b/cli/Cargo.toml index e6dc444..1fa9dd2 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -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 "] @@ -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" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 557cdca..df60662 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -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 "]