diff --git a/CHANGELOG.md b/CHANGELOG.md index 80a6dbc..096cbb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v4.2.1 (2024-02-02) + +* Fix navigation with proper date handling [#184](https://github.com/gerardcl/renfe-cli/issues/187) + ## v4.2.0 (2023-11-26) * Check input stations to match and use existing [#181](https://github.com/gerardcl/renfe-cli/issues/181) diff --git a/Cargo.lock b/Cargo.lock index 282d01d..843eaed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1096,7 +1096,7 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "renfe-cli" -version = "4.2.0" +version = "4.2.1" dependencies = [ "chrono", "getopts", diff --git a/Cargo.toml b/Cargo.toml index e2465d3..9a022e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,16 @@ [package] name = "renfe-cli" -version = "4.2.0" +version = "4.2.1" edition = "2021" -license = "BSD License" - +license = "BSD-3-Clause" +description = "CLI for searching Renfe train timetables in the Spanish country" +readme = "README.md" +homepage = "https://github.com/gerardcl/renfe-cli" +repository = "https://github.com/gerardcl/renfe-cli" +keywords = ["cli", "timetables", "trains", "renfe", "spain"] +categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + [lib] name = "renfe_cli" crate-type = ["cdylib"]