diff --git a/Cargo.lock b/Cargo.lock index 5dfc53e..4ffebbb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -54,7 +54,7 @@ checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" [[package]] name = "belt" -version = "0.1.4" +version = "0.1.5" dependencies = [ "anyhow", "chrono", @@ -331,7 +331,7 @@ dependencies = [ [[package]] name = "dateparser" -version = "0.1.4" +version = "0.1.5" dependencies = [ "anyhow", "chrono", diff --git a/belt/Cargo.toml b/belt/Cargo.toml index 41bf6eb..31b5ef2 100644 --- a/belt/Cargo.toml +++ b/belt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "belt" -version = "0.1.4" +version = "0.1.5" authors = ["Rollie Ma "] edition = "2018" publish = false diff --git a/dateparser/Cargo.toml b/dateparser/Cargo.toml index 65e86d7..a7db2ce 100644 --- a/dateparser/Cargo.toml +++ b/dateparser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dateparser" -version = "0.1.4" +version = "0.1.5" 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 79e34f7..363dba2 100644 --- a/dateparser/README.md +++ b/dateparser/README.md @@ -23,7 +23,7 @@ Add to your `Cargo.toml`: ```toml [dependencies] -dateparser = "0.1.4" +dateparser = "0.1.5" ``` 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.4" +dateparser = "0.1.5" ``` ```rust