diff --git a/Cargo.toml b/Cargo.toml index 2a089e7..caec76f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chrono" -version = "0.1.9" +version = "0.1.10" authors = ["Kang Seonghoon "] description = "Date and time library for Rust" diff --git a/README.md b/README.md index db5dd7f..c2c9ec8 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[Chrono][doc] 0.1.9 -=================== +[Chrono][doc] 0.1.10 +==================== [![Chrono on Travis CI][travis-image]][travis] diff --git a/src/date.rs b/src/date.rs index 636ad9c..1ba1549 100644 --- a/src/date.rs +++ b/src/date.rs @@ -301,7 +301,7 @@ impl fmt::Show for Date { mod tests { use std::borrow::IntoCow; use std::fmt; - use std::str::SendStr; + use std::string::CowString; use duration::Duration; use naive::date::NaiveDate; @@ -316,7 +316,7 @@ mod tests { struct UTC1y; // same to UTC but with an offset of 365 days impl Offset for UTC1y { - fn name(&self) -> SendStr { "UTC+8760".into_cow() } // yes, no kidding + fn name(&self) -> CowString<'static> { "UTC+8760".into_cow() } // yes, no kidding fn local_minus_utc(&self) -> Duration { Duration::zero() } fn from_local_date(&self, local: &NaiveDate) -> LocalResult> { diff --git a/src/lib.rs b/src/lib.rs index 636d5d7..77a8f8a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ /*! -# Chrono 0.1.9 +# Chrono 0.1.10 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.