-
Notifications
You must be signed in to change notification settings - Fork 541
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.3.0: Planned breaking changes to the existing interface.
So this is a much delayed major release, but this should not really change how you use Chrono---only the "required" breakages have been done (e.g. anything hindering API evolution). The "big" release used to be 0.3, but due to the dependency changes we are forced to push that to 0.4. I've took this opportunity to push all known planned breaking changes to 0.3, so this should be quite stable for a moment. See `CHANGELOG.md` for the full list of changes, but most importantly: - `chrono::prelude` module has been added for proper glob imports. - `FixedOffset` is now the official "value" type for time zone offsets. - Serde 0.9 support has landed, and serialization format used by rustc-serialize and Serde has been now synchronized. - Formatting items have been slightly adjusted to be future-proof. Fixes #126.
- Loading branch information
1 parent
7b17d68
commit db9b98f
Showing
6 changed files
with
126 additions
and
43 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 |
---|---|---|
|
@@ -21,6 +21,7 @@ Jisoo Park <[email protected]> | |
Joe Wilm <[email protected]> | ||
John Heitmann <[email protected]> | ||
John Nagle <[email protected]> | ||
Jonas mg <[email protected]> | ||
János Illés <[email protected]> | ||
Ken Tossell <[email protected]> | ||
Martin Risell Lilja <[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.25" | ||
version = "0.3.0" | ||
authors = ["Kang Seonghoon <[email protected]>"] | ||
|
||
description = "Date and time library for Rust" | ||
|
@@ -20,7 +20,7 @@ appveyor = { repository = "chronotope/chrono" } | |
name = "chrono" | ||
|
||
[dependencies] | ||
time = "0.1" | ||
time = "^0.1.36" | ||
num = { version = "0.1", default-features = false } | ||
rustc-serialize = { version = "0.3", optional = true } | ||
serde = { version = "0.9", optional = true } | ||
|
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