Skip to content

Commit

Permalink
Version 1.8.0
Browse files Browse the repository at this point in the history
* Bump dependencies
* Bump the client spec to v2.1
  • Loading branch information
acuteenvy committed Nov 30, 2023
1 parent e6d29bf commit 65be907
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 60 deletions.
119 changes: 68 additions & 51 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tlrc"
version = "1.7.1"
description = "A tldr client written in Rust"
version = "1.8.0"
description = "Official tldr client written in Rust"
categories = ["command-line-utilities"]
homepage = "https://github.com/tldr-pages/tlrc"
repository = "https://github.com/tldr-pages/tlrc"
Expand All @@ -15,17 +15,17 @@ name = "tldr"
path = "src/main.rs"

[dependencies]
clap = { version = "4.4.7", features = ["derive"] }
clap = { version = "4.4.10", features = ["derive"] }
dirs = "5.0.1"
ring = "0.17.5"
serde = { version = "1.0.190", features = ["derive"] }
toml = "0.8.6"
ureq = { version = "2.8.0", default-features = false, features = ["tls"] }
ring = "0.17.6"
serde = { version = "1.0.193", features = ["derive"] }
toml = "0.8.8"
ureq = { version = "2.9.1", default-features = false, features = ["tls"] }
yansi = "0.5.1"
zip = { version = "0.6.6", default-features = false, features = ["deflate"] }

[build-dependencies]
clap = { version = "4.4.7", features = ["derive"] }
clap = { version = "4.4.10", features = ["derive"] }
clap_complete = "4.4.4"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use clap::ValueEnum;
use crate::args::Cli;

/// The version of the tldr client specification being implemented.
const CLIENT_SPEC: &str = "2.0";
const CLIENT_SPEC: &str = "2.1";

fn is_debug_build() -> bool {
env::var("PROFILE").unwrap() == "debug"
Expand Down

0 comments on commit 65be907

Please sign in to comment.