Skip to content

Commit

Permalink
Merge pull request #109 from fredmorcos/0.9.0-pr
Browse files Browse the repository at this point in the history
Version 0.9.0
  • Loading branch information
fredmorcos authored Sep 5, 2024
2 parents 917f33c + 44d90ae commit fd175eb
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
</br>
[![docs.rs](https://img.shields.io/docsrs/tvrank?style=for-the-badge)](https://docs.rs/tvrank/0.8.5/tvrank/)
[![docs.rs](https://img.shields.io/docsrs/tvrank?style=for-the-badge)](https://docs.rs/tvrank/0.9.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
11 changes: 11 additions & 0 deletions changelogs/0.9.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changes in `0.9.0`:

* Dependency version updates.
* Remove the `enum-utils` and `failure` crates as dependencies. The `failure` crate was a
dependency of `enum-utils` and has a security vulnerability which will not be fixed and
the crate is deprecated anyway. The `enum-utils` crate wasn't used much so it was
replaced with custom code.
* Update to clap version 4 for the parsing command-line arguments.
* Switch from `OpenSSL` to `rusTLS`. The former was causing linking problems on modern
Ubuntu systems.
* Minor code and documentation cleanups and modernization.
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.5"
version = "0.9.0"
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.5" }
tvrank = { path = "../lib", version = "0.9.0" }
indicatif = "0.16"
log = "0.4"
atoi = "2.0"
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.5"
version = "0.9.0"
edition = "2021"
description = "Query and sort information about movies and series"
authors = ["Fred Morcos <[email protected]>"]
Expand Down

0 comments on commit fd175eb

Please sign in to comment.