diff --git a/AUTHORS.txt b/AUTHORS.txt index 7467bcd..fb74dbe 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -1,6 +1,7 @@ Chrono is mainly written by Kang Seonghoon , and also the following people (in ascending order): +Alexander Bulaev Ben Eills Colin Ray Corey Farwell diff --git a/CHANGELOG.md b/CHANGELOG.md index f389120..edde79e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,17 @@ 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.24 (2016-08-04) + +### Added + +- Serde 0.8 is now supported. 0.7 also remains supported. (#86) + +### Fixed + +- The deserialization implementation for rustc-serialize now properly verifies the input. + All serialization codes are also now thoroughly tested. (#42) + ## 0.2.23 (2016-08-03) ### Added diff --git a/Cargo.toml b/Cargo.toml index 7aba0fd..24d3bfd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chrono" -version = "0.2.23" +version = "0.2.24" authors = ["Kang Seonghoon "] description = "Date and time library for Rust" diff --git a/README.md b/README.md index 7d650dc..acf9701 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[Chrono][doc] 0.2.23 +[Chrono][doc] 0.2.24 ==================== [![Chrono on Travis CI][travis-image]][travis] diff --git a/src/lib.rs b/src/lib.rs index 6066e17..49b8781 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,7 @@ // Copyright (c) 2014-2015, Kang Seonghoon. // See README.md and LICENSE.txt for details. -//! # Chrono 0.2.23 +//! # Chrono 0.2.24 //! //! Date and time handling for Rust. (also known as `rust-chrono`) //! It aims to be a feature-complete superset of