-
Notifications
You must be signed in to change notification settings - Fork 546
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.2.16: mainly maintenance changes, with a minor formatting addition.
- 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) - 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 a broken link in the `README.md`. (#41) - Tons of supporting examples for the documentation have been added. More to come.
- Loading branch information
1 parent
acf4eab
commit ed37279
Showing
5 changed files
with
23 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ Chrono is mainly written by Kang Seonghoon <[email protected]>, | |
and also the following people (in ascending order): | ||
|
||
Colin Ray <[email protected]> | ||
Corey Farwell <[email protected]> | ||
Dan <[email protected]> | ||
David Ross <[email protected]> | ||
Eunchong Yu <[email protected]> | ||
|
@@ -10,4 +11,5 @@ Jisoo Park <[email protected]> | |
John Nagle <[email protected]> | ||
Ken Tossell <[email protected]> | ||
Steve Klabnik <[email protected]> | ||
Tom Gallacher <[email protected]> | ||
klutzy <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "chrono" | ||
version = "0.2.15" | ||
version = "0.2.16" | ||
authors = ["Kang Seonghoon <[email protected]>"] | ||
|
||
description = "Date and time library for Rust" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[Chrono][doc] 0.2.15 | ||
[Chrono][doc] 0.2.16 | ||
==================== | ||
|
||
[![Chrono on Travis CI][travis-image]][travis] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters