Merge pull request #333 from chronotope/v0.4.8

v0.4.8
This commit is contained in:
Brandon W Maister 2019-08-31 16:34:25 -04:00 committed by GitHub
commit 630cade52a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 2 deletions

View File

@ -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. 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. Versions with only mechanical changes will be omitted from the following list.
## next ## 0.4.8
### Fixes ### Fixes
* Add '0' to single-digit days in rfc2822 date format (@wyhaya #323) * Add '0' to single-digit days in rfc2822 date format (@wyhaya #323)
* Correctly pad DelayedFormat (@SamokhinIlya #320) * 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 ## 0.4.7
### Fixes ### Fixes

View File

@ -1,6 +1,6 @@
[package] [package]
name = "chrono" name = "chrono"
version = "0.4.7" version = "0.4.8"
authors = [ authors = [
"Kang Seonghoon <public+rust@mearie.org>", "Kang Seonghoon <public+rust@mearie.org>",
"Brandon W Maister <quodlibetor@gmail.com>", "Brandon W Maister <quodlibetor@gmail.com>",

View File

@ -15,6 +15,8 @@
//! currently Chrono supports [one built-in syntax closely resembling //! currently Chrono supports [one built-in syntax closely resembling
//! C's `strftime` format](./strftime/index.html). //! C's `strftime` format](./strftime/index.html).
#![allow(ellipsis_inclusive_range_patterns)]
use std::fmt; use std::fmt;
use std::str::FromStr; use std::str::FromStr;
use std::error::Error; use std::error::Error;