diff --git a/Cargo.lock b/Cargo.lock index bcc4e1a..097240c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -54,7 +54,7 @@ checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" [[package]] name = "belt" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyhow", "chrono", @@ -331,7 +331,7 @@ dependencies = [ [[package]] name = "dateparser" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyhow", "chrono", diff --git a/belt/Cargo.toml b/belt/Cargo.toml index e7940f1..60193b2 100644 --- a/belt/Cargo.toml +++ b/belt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "belt" -version = "0.1.1" +version = "0.1.2" authors = ["Rollie Ma "] edition = "2018" publish = false diff --git a/dateparser/Cargo.toml b/dateparser/Cargo.toml index 24c2867..078bed1 100644 --- a/dateparser/Cargo.toml +++ b/dateparser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dateparser" -version = "0.1.1" +version = "0.1.2" 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 3608c87..61a925c 100644 --- a/dateparser/README.md +++ b/dateparser/README.md @@ -23,7 +23,7 @@ Add to your `Cargo.toml`: ```toml [dependencies] -dateparser = "0.1.1" +dateparser = "0.1.2" ``` 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.5.3" -dateparser = "0.1.1" +dateparser = "0.1.2" ``` ```rust