From 603ac1bc1c3a053a9ad05e65be98a7f415ae9ce3 Mon Sep 17 00:00:00 2001 From: Kang Seonghoon Date: Thu, 4 Aug 2016 03:35:53 +0900 Subject: [PATCH] 0.2.24: Serialization updates. - Serde 0.8 is now supported. (#86) - The deserialization implementation for rustc-serialize now properly verifies the input. Also tons of tests have been added. (#42) --- AUTHORS.txt | 1 + CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 5 files changed, 15 insertions(+), 3 deletions(-) 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