From 1fbb710228c117a46de3ea600fea60684622ebb0 Mon Sep 17 00:00:00 2001 From: Devashish Dixit Date: Tue, 18 Mar 2025 13:32:56 +0800 Subject: [PATCH 1/2] Prepare release 0.5.0 --- cli-table-derive/Cargo.toml | 2 +- cli-table/Cargo.toml | 2 +- cli-table/README.md | 4 ++-- cli-table/src/lib.rs | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/cli-table-derive/Cargo.toml b/cli-table-derive/Cargo.toml index f20043a..1d84103 100644 --- a/cli-table-derive/Cargo.toml +++ b/cli-table-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli-table-derive" -version = "0.4.6" +version = "0.5.0" authors = ["Devashish Dixit "] license = "MIT/Apache-2.0" description = "A crate for printing tables on command line" diff --git a/cli-table/Cargo.toml b/cli-table/Cargo.toml index 7d739a1..6d5eeab 100644 --- a/cli-table/Cargo.toml +++ b/cli-table/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli-table" -version = "0.4.9" +version = "0.5.0" authors = ["Devashish Dixit "] license = "MIT/Apache-2.0" description = "A crate for printing tables on command line" diff --git a/cli-table/README.md b/cli-table/README.md index 9744c59..41c15e4 100644 --- a/cli-table/README.md +++ b/cli-table/README.md @@ -9,11 +9,11 @@ Rust crate for printing tables on command line. ## Usage -Add `cli-table` in your `Cargo.toms`'s `dependencies` section +Add `cli-table` in your `Cargo.toml`'s `dependencies` section ```toml [dependencies] -cli-table = "0.4" +cli-table = "0.5" ``` ### Simple usage diff --git a/cli-table/src/lib.rs b/cli-table/src/lib.rs index 9483ec0..6fd9aed 100644 --- a/cli-table/src/lib.rs +++ b/cli-table/src/lib.rs @@ -6,11 +6,11 @@ //! //! # Usage //! -//! Add `cli-table` in your `Cargo.toms`'s `dependencies` section +//! Add `cli-table` in your `Cargo.toml`'s `dependencies` section //! //! ```toml //! [dependencies] -//! cli-table = "0.4" +//! cli-table = "0.5" //! ``` //! //! ## Simple usage From f17ac9d532d1717a9bd8c9d15271c71e279811df Mon Sep 17 00:00:00 2001 From: Devashish Dixit Date: Tue, 18 Mar 2025 13:36:27 +0800 Subject: [PATCH 2/2] Change dependency version --- cli-table/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli-table/Cargo.toml b/cli-table/Cargo.toml index 6d5eeab..027b927 100644 --- a/cli-table/Cargo.toml +++ b/cli-table/Cargo.toml @@ -19,7 +19,7 @@ path = "src/lib.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -cli-table-derive = { version = "0.4.6", path = "../cli-table-derive", optional = true } +cli-table-derive = { version = "0.5.0", path = "../cli-table-derive", optional = true } csv = { version = "1.3.1", optional = true } termcolor = "1.4.1" unicode-width = "0.2.0"