From 3c989e575807fa9de7e917e6aee95e86a1bf75f6 Mon Sep 17 00:00:00 2001 From: Fred Morcos Date: Tue, 30 Nov 2021 21:32:34 +0100 Subject: [PATCH] Bump version to 0.2.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- changelogs/0.2.0.md | 3 +++ 4 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 changelogs/0.2.0.md diff --git a/Cargo.lock b/Cargo.lock index a0566eb..a12e59d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1545,7 +1545,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "tvrank" -version = "0.1.0" +version = "0.2.0" dependencies = [ "atoi", "crossbeam", diff --git a/Cargo.toml b/Cargo.toml index 102fef6..41921f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tvrank" -version = "0.1.0" +version = "0.2.0" edition = "2021" description = "Query and sort information about movies and series" authors = ["Fred Morcos "] diff --git a/README.md b/README.md index 5338719..0df7eb1 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![CI](https://img.shields.io/github/workflow/status/fredmorcos/tvrank/CI?label=Master&style=for-the-badge)](https://github.com/fredmorcos/tvrank/actions)
[![Crates.io](https://img.shields.io/crates/v/tvrank?style=for-the-badge)](https://crates.io/crates/tvrank) -[![docs.rs](https://img.shields.io/docsrs/tvrank?style=for-the-badge)](https://docs.rs/tvrank/0.2.3/tvrank/) +[![docs.rs](https://img.shields.io/docsrs/tvrank?style=for-the-badge)](https://docs.rs/tvrank/0.2.0/tvrank/) `tvrank` is a library and command-line utility written in Rust for querying and ranking information about movies and series. It can be used to query a single title or scan @@ -97,7 +97,7 @@ Add the dependency to your `Cargo.toml`: ```toml [dependencies] -tvrank = "0.1" +tvrank = "0.2" ``` Or, using `cargo add`: diff --git a/changelogs/0.2.0.md b/changelogs/0.2.0.md new file mode 100644 index 0000000..4dc212c --- /dev/null +++ b/changelogs/0.2.0.md @@ -0,0 +1,3 @@ +* Rework the storage system +* Simplify the library API +* Offer API hooks for UI updates