diff --git a/AUTHORS.txt b/AUTHORS.txt index 00739f1..ec9e1e7 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -2,6 +2,7 @@ Chrono is mainly written by Kang Seonghoon , and also the following people (in ascending order): Colin Ray +Dan David Ross Eunchong Yu John Nagle diff --git a/CHANGELOG.md b/CHANGELOG.md index 79d0670..ea49820 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,13 @@ 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.4 (2015-03-03) + +### Fixed + +- Clarified the meaning of `Date` and fixed unwanted conversion problem + that only occurs with positive UTC offsets. (#27) + ## 0.2.3 (2015-02-27) ### Added diff --git a/Cargo.toml b/Cargo.toml index 525a32f..309547f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chrono" -version = "0.2.3" +version = "0.2.4" authors = ["Kang Seonghoon "] description = "Date and time library for Rust" diff --git a/README.md b/README.md index a8331a7..0986673 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[Chrono][doc] 0.2.3 +[Chrono][doc] 0.2.4 =================== [![Chrono on Travis CI][travis-image]][travis] diff --git a/src/lib.rs b/src/lib.rs index 600f020..b74114a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ /*! -# Chrono 0.2.3 +# Chrono 0.2.4 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.