From 7087cd156a535df3fe77e02f89d55786515013e9 Mon Sep 17 00:00:00 2001 From: Kang Seonghoon Date: Thu, 29 Jan 2015 08:47:05 +0900 Subject: [PATCH] 0.1.16: dependency fixes due to language changes. --- Cargo.toml | 4 ++-- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9fa6ad7..f3cdf6c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chrono" -version = "0.1.15" +version = "0.1.16" authors = ["Kang Seonghoon "] description = "Date and time library for Rust" @@ -15,5 +15,5 @@ license = "MIT/Apache-2.0" name = "chrono" [dependencies] -time = "0.1.14" +time = "0.1.15" diff --git a/README.md b/README.md index 23be8dc..84d4a46 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[Chrono][doc] 0.1.15 +[Chrono][doc] 0.1.16 ==================== [![Chrono on Travis CI][travis-image]][travis] diff --git a/src/lib.rs b/src/lib.rs index af9dfcb..9bed626 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ /*! -# Chrono 0.1.15 +# Chrono 0.1.16 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.