Releases: chronotope/chrono
Releases · chronotope/chrono
v0.1.17
Language changes.
- Many unstable stdlib parts require
#[feature]
flags as per Rust RFC #507.
v0.1.16
Dependency fixes due to language changes.
v0.1.15
Language changes.
std::fmt::Show
is now std::fmt::Debug
.
std::fmt::String
is now std::fmt::Display
.
v0.1.14
Added
- Added a missing
std::fmt::String
impl for Local
(thanks @daboross).
v0.1.13
Language changes and fmt::String
supports.
Changed
- Most types now implement both
std::fmt::Show
and std::fmt::String
,
with the former used for the stricter output and the latter used for more casual output.
Removed
Offset::name
has been replaced by a std::fmt::String
implementation to Offset
.
v0.1.12
Language changes.
- Feature flags used are all accepted.
- Orphan check workaround is no longer required.
Removed
Duration + T
no longer works due to the updated impl reachability rules.
Use T + Duration
as a workaround.
v0.1.11
Language changes.
- Boxed closures are gone; some unboxed closures require an explicit annotation for kinds (
&:
in most cases).
v0.1.10
Language changes.
std::str::SendStr
is now std::string::CowString<'static>
.
v0.1.9
Language changes.
Add
and Sub
switches to associated types.
v0.1.8
Language changes.
#[deriving]
is now #[derive]
.
- prelude no longer imports many items by default.
[T, ..n]
is no longer valid.
- a temporary fix for
#[derive(Hash)]
failing out.
- the formatting error uses a dedicated type instead of
IoError
.