From 4d7c5dd99572823fa4a390b483c38ab020a2172f Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Tue, 14 Aug 2018 22:49:24 -0400 Subject: [PATCH] Now with 100% more WASM! Version bump and README update --- CHANGELOG.md | 10 +++++++++- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 6 ++++++ 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67f4147..50d15a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +Version 1.0.2 (2018-08-14) +========================== + +Misc +---- + +- Add tests for WASM + Version 1.0.1 (2018-08-11) ========================== @@ -15,4 +23,4 @@ Version 1.0.0 (2018-08-03) ========================== Initial release. Passes all relevant unit tests from Python's -`dateutil` project. \ No newline at end of file +`dateutil` project. diff --git a/Cargo.toml b/Cargo.toml index 8438c5d..d1edd1d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dtparse" -version = "1.0.1" +version = "1.0.2" authors = ["Bradlee Speice "] description = "A dateutil-compatible timestamp parser for Rust" repository = "https://github.com/bspeice/dtparse.git" diff --git a/README.md b/README.md index 4eeb5fc..7d0762d 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ Further examples can be found in the [examples](examples) directory on internati # Usage `dtparse` requires a minimum Rust version of 1.21 to build, but is tested on Windows, OSX, -BSD, and Linux. The build is also compiled against the iOS and Android SDK's, but is not +BSD, Linux, and WASM. The build is also compiled against the iOS and Android SDK's, but is not tested against them. [dateutil]: https://github.com/dateutil/dateutil diff --git a/src/lib.rs b/src/lib.rs index ff71d9c..b6cfd31 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -60,6 +60,12 @@ //! ``` //! //! Further examples can be found in the `examples` directory on international usage. +//! +//! # Usage +//! +//! `dtparse` requires a minimum Rust version of 1.21 to build, but is tested on Windows, OSX, +//! BSD, Linux, and WASM. The build is also compiled against the iOS and Android SDK's, but is not +//! tested against them. //! //! [dateutil]: https://github.com/dateutil/dateutil