From 3ed3200feee75ebb93ba384e717c8c4a928b24e9 Mon Sep 17 00:00:00 2001 From: Rollie Ma Date: Sat, 25 Mar 2023 20:24:38 -0700 Subject: [PATCH] version: bump to 0.2.0 (#37) --- Cargo.lock | 4 ++-- belt/Cargo.toml | 2 +- dateparser/Cargo.toml | 2 +- dateparser/README.md | 10 +++++----- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0fc2d6e..944b90f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -45,7 +45,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "belt" -version = "0.1.8" +version = "0.2.0" dependencies = [ "anyhow", "chrono", @@ -366,7 +366,7 @@ dependencies = [ [[package]] name = "dateparser" -version = "0.1.8" +version = "0.2.0" dependencies = [ "anyhow", "chrono", diff --git a/belt/Cargo.toml b/belt/Cargo.toml index 0b6e460..888be39 100644 --- a/belt/Cargo.toml +++ b/belt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "belt" -version = "0.1.8" +version = "0.2.0" authors = ["Rollie Ma "] edition = "2021" publish = false diff --git a/dateparser/Cargo.toml b/dateparser/Cargo.toml index 28f7db9..7711a1e 100644 --- a/dateparser/Cargo.toml +++ b/dateparser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dateparser" -version = "0.1.8" +version = "0.2.0" authors = ["Rollie Ma "] description = "Parse dates in string formats that are commonly used" readme = "README.md" diff --git a/dateparser/README.md b/dateparser/README.md index 75b0498..057b46f 100644 --- a/dateparser/README.md +++ b/dateparser/README.md @@ -5,10 +5,10 @@ [![Crates.io][cratesio-badge]][cratesio-url] [![Doc.rs][docrs-badge]][docrs-url] -[actions-badge]: https://github.com/waltzofpearls/belt/workflows/ci/badge.svg -[actions-url]: https://github.com/waltzofpearls/belt/actions?query=workflow%3Aci+branch%3Amain +[actions-badge]: https://github.com/waltzofpearls/dateparser/workflows/ci/badge.svg +[actions-url]: https://github.com/waltzofpearls/dateparser/actions?query=workflow%3Aci+branch%3Amain [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/waltzofpearls/belt/blob/main/LICENSE +[mit-url]: https://github.com/waltzofpearls/dateparser/blob/main/LICENSE [cratesio-badge]: https://img.shields.io/crates/v/dateparser.svg [cratesio-url]: https://crates.io/crates/dateparser [docrs-badge]: https://docs.rs/dateparser/badge.svg @@ -23,7 +23,7 @@ Add to your `Cargo.toml`: ```toml [dependencies] -dateparser = "0.1.8" +dateparser = "0.2.0" ``` And then use `dateparser` in your code: @@ -57,7 +57,7 @@ Convert returned `DateTime` to pacific time zone datetime with `chrono-tz`: ```toml [dependencies] chrono-tz = "0.6.3" -dateparser = "0.1.8" +dateparser = "0.2.0" ``` ```rust