diff --git a/AUTHORS.txt b/AUTHORS.txt index ca3e3d9..3f55081 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -15,3 +15,4 @@ Martin Risell Lilja Steve Klabnik Tom Gallacher klutzy +kud1ing diff --git a/CHANGELOG.md b/CHANGELOG.md index 70e5445..a471fea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ Chrono obeys the principle of [Semantic Versioning](http://semver.org/). There were/are numerous minor versions before 1.0 due to the language changes. Versions with only mechnical changes will be omitted from the following list. +## 0.2.19 (2016-02-05) + +### Added + +- The documentation for `Date` is made clear about its ambiguity and guarantees. + +### Fixed + +- `DateTime::date` had been wrong when the local date and the UTC date is in disagreement. (#61) + ## 0.2.18 (2016-01-23) ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 9b7bff2..b901498 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chrono" -version = "0.2.18" +version = "0.2.19" authors = ["Kang Seonghoon "] description = "Date and time library for Rust" diff --git a/README.md b/README.md index c9c9c87..48090c8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[Chrono][doc] 0.2.18 +[Chrono][doc] 0.2.19 ==================== [![Chrono on Travis CI][travis-image]][travis] diff --git a/src/lib.rs b/src/lib.rs index a6e0f4c..2ec6714 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,11 +2,11 @@ // Copyright (c) 2014-2015, Kang Seonghoon. // See README.md and LICENSE.txt for details. -//! # Chrono 0.2.18 +//! # Chrono 0.2.19 //! //! 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. +//! the [time](https://github.com/rust-lang-deprecated/time) library. //! In particular, //! //! * Chrono strictly adheres to ISO 8601.