diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ec5ec9..108f9f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,13 +8,19 @@ Chrono obeys the principle of [Semantic Versioning](http://semver.org/). There were/are numerous minor versions before 1.0 due to the language changes. Versions with only mechanical changes will be omitted from the following list. -## next +## 0.4.8 ### Fixes * Add '0' to single-digit days in rfc2822 date format (@wyhaya #323) * Correctly pad DelayedFormat (@SamokhinIlya #320) +### Features + +* Support `wasm-unknown-unknown` via wasm-bindgen (in addition to + emscripten/`wasm-unknown-emscripten`). (finished by @evq in #331, initial + work by @jjpe #287) + ## 0.4.7 ### Fixes diff --git a/Cargo.toml b/Cargo.toml index 4e246f0..ecb2dcf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chrono" -version = "0.4.7" +version = "0.4.8" authors = [ "Kang Seonghoon ", "Brandon W Maister ", diff --git a/src/format/mod.rs b/src/format/mod.rs index 544088a..24647b4 100644 --- a/src/format/mod.rs +++ b/src/format/mod.rs @@ -15,6 +15,8 @@ //! currently Chrono supports [one built-in syntax closely resembling //! C's `strftime` format](./strftime/index.html). +#![allow(ellipsis_inclusive_range_patterns)] + use std::fmt; use std::str::FromStr; use std::error::Error;