Chronotope Chrono Versions Save

Date and time library for Rust

v0.1.9

9 months ago

Language changes.

  • Add and Sub switches to associated types.

v0.1.10

9 months ago

Language changes.

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

v0.1.11

9 months ago

Language changes.

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

v0.1.12

9 months ago

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.13

9 months ago

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.14

9 months ago

Added

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

v0.1.15

9 months ago

Language changes.

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

v0.1.16

9 months ago

Dependency fixes due to language changes.

v0.1.17

9 months ago

Language changes.

  • Many unstable stdlib parts require #[feature] flags as per Rust RFC #507.

v0.1.18

9 months ago

Language changes.

  • Replaced remaining occurrences of Show with Debug.
  • Dependency upgrades.