From 533161cfd7285452d2f4ab479c87e9b96a90f629 Mon Sep 17 00:00:00 2001 From: Kang Seonghoon Date: Sat, 25 Apr 2015 00:12:56 +0900 Subject: [PATCH] 0.2.12: language changes. - Many `std::num` traits are removed and replaced with the external `num` crate. For time being, thus, Chrono will require the dependency on `num`. This is expected to be temporary however. --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ae2f0c5..6eee02f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chrono" -version = "0.2.11" +version = "0.2.12" authors = ["Kang Seonghoon "] description = "Date and time library for Rust" diff --git a/README.md b/README.md index 0458e38..566fd21 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[Chrono][doc] 0.2.11 +[Chrono][doc] 0.2.12 ==================== [![Chrono on Travis CI][travis-image]][travis] diff --git a/src/lib.rs b/src/lib.rs index 6d5f831..d22db86 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ /*! -# Chrono 0.2.11 +# Chrono 0.2.12 Date and time handling for Rust. (also known as `rust-chrono`) It aims to be a feature-complete superset of the [time](https://github.com/rust-lang/time) library.