Skip to content

Releases: chronotope/chrono

v0.1.16

05 Sep 12:30
Compare
Choose a tag to compare

Dependency fixes due to language changes.

v0.1.15

05 Sep 12:31
Compare
Choose a tag to compare

Language changes.

  • std::fmt::Show is now std::fmt::Debug.
  • std::fmt::String is now std::fmt::Display.

v0.1.14

05 Sep 12:31
Compare
Choose a tag to compare

Added

  • Added a missing std::fmt::String impl for Local (thanks @daboross).

v0.1.13

05 Sep 12:32
Compare
Choose a tag to compare

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

05 Sep 12:33
Compare
Choose a tag to compare

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

05 Sep 12:33
Compare
Choose a tag to compare

Language changes.

  • Boxed closures are gone; some unboxed closures require an explicit annotation for kinds (&: in most cases).

v0.1.10

05 Sep 12:33
Compare
Choose a tag to compare

Language changes.

  • std::str::SendStr is now std::string::CowString<'static>.

v0.1.9

05 Sep 12:34
Compare
Choose a tag to compare

Language changes.

  • Add and Sub switches to associated types.

v0.1.8

05 Sep 12:34
Compare
Choose a tag to compare

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.

v0.1.7

05 Sep 12:34
Compare
Choose a tag to compare

Language changes.

  • Eq no longer accepts the reflexive type parameter.
    (this doesn't change the actual interface, as Eq is simply a marker for total ordering. PartialEq retains it.)