Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.9.0 #109

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading