-
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.1.13: language changes and fmt::String supports.
- Every type modulo `LocalResult` and `Offset` now implements `std::fmt::String`, so `.to_string()` can be used. The exact format has been changed for better looking output. - `std::fmt::Show` are intended for "stricter" output, which mostly means the strict ISO 8601 format. `DelayedFormat` also implements this, but only for inspection. - `Offset` should implement `Show` but can omit `String`. The old `name` method is merged into `String` implementations.
- Loading branch information
1 parent
d79c460
commit ca84749
Showing
12 changed files
with
221 additions
and
154 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "chrono" | ||
version = "0.1.12" | ||
version = "0.1.13" | ||
authors = ["Kang Seonghoon <[email protected]>"] | ||
|
||
description = "Date and time library for Rust" | ||
|
@@ -15,5 +15,5 @@ license = "MIT/Apache-2.0" | |
name = "chrono" | ||
|
||
[dependencies] | ||
time = "0.1.11" | ||
time = "0.1.12" | ||
|
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
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
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
Oops, something went wrong.