diff --git a/AUTHORS.txt b/AUTHORS.txt index d1596ef..794371b 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -2,6 +2,7 @@ Chrono is mainly written by Kang Seonghoon , and also the following people (in ascending order): Colin Ray +Corey Farwell Dan David Ross Eunchong Yu @@ -10,4 +11,5 @@ Jisoo Park John Nagle Ken Tossell Steve Klabnik +Tom Gallacher klutzy diff --git a/CHANGELOG.md b/CHANGELOG.md index fe893cf..7bc0eb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,24 @@ 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 mechnical changes will be omitted from the following list. +## 0.2.16 (2015-09-06) + +### Added + +- Added `%.3f`, `%.6f` and `%.9f` specifier for formatting fractional seconds + up to 3, 6 or 9 decimal digits. This is a natural extension to the existing `%f`. + Note that this is (not yet) generic, no other value of precision is supported. (#45) + +### Changed + +- Forbade unsized types from implementing `Datelike` and `Timelike`. + This does not make a big harm as any type implementing them should be already sized + to be practical, but this change still can break highly generic codes. (#46) + +### Fixed + +- Fixed a broken link in the `README.md`. (#41) + ## 0.2.15 (2015-07-05) ### Added diff --git a/Cargo.toml b/Cargo.toml index b52acaa..a205ce0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chrono" -version = "0.2.15" +version = "0.2.16" authors = ["Kang Seonghoon "] description = "Date and time library for Rust" diff --git a/README.md b/README.md index 8742073..adf81cf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[Chrono][doc] 0.2.15 +[Chrono][doc] 0.2.16 ==================== [![Chrono on Travis CI][travis-image]][travis] diff --git a/src/lib.rs b/src/lib.rs index 890c7eb..11e3069 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ /*! -# Chrono 0.2.15 +# Chrono 0.2.16 Date and time handling for Rust. (also known as `rust-chrono`) It aims to be a feature-complete superset of the [time](https://github.com/rust-lang/time) library.