From 41b9768b31bbff5bd5e9bacbd31d5da95c8a0987 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Tue, 19 Sep 2023 11:27:33 +0530 Subject: [PATCH] chore(crate): bump version --- Cargo.toml | 4 ++-- README.md | 4 ++-- src/lib.rs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c640d54..d7eaa95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chrono_lc" -version = "0.1.3" +version = "0.1.4" edition = "2021" authors = ["Alessandro Pellizzari ", "Erica Marigold "] description = "Localised date and time formatting library for Rust, based on chrono" @@ -13,7 +13,7 @@ repository = "https://github.com/0x5eal/chrono-locale" build = "build.rs" [dependencies] -chrono = "0.4.29" +chrono = "0.4" num-integer = { version = "0.1", default-features = false } lazy_static = "1.2" diff --git a/README.md b/README.md index ba71160..fd175a9 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,8 @@ Include the dependency in `Cargo.toml`: ```toml [dependencies] -chrono = "0.4.29" -chrono_lc = "0.1.3" +chrono = "0.4" +chrono_lc = "0.1.4" ``` Import the required modules into `lib.rs` or `main.rs`: diff --git a/src/lib.rs b/src/lib.rs index 25bcafc..44fa9a9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,7 +8,7 @@ //! ```toml //! [dependencies] //! chrono = "0.4" -//! chrono_lc = "0.1.3" +//! chrono_lc = "0.1.4" //! ``` //! //! Then put this in your `lib.rs` or `main.rs`: