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)
This commit is contained in:
Kang Seonghoon 2016-08-04 03:35:53 +09:00
parent ad6253f653
commit 603ac1bc1c
5 changed files with 15 additions and 3 deletions

View File

@ -1,6 +1,7 @@
Chrono is mainly written by Kang Seonghoon <public+rust@mearie.org>, Chrono is mainly written by Kang Seonghoon <public+rust@mearie.org>,
and also the following people (in ascending order): and also the following people (in ascending order):
Alexander Bulaev <alexbool@yandex-team.ru>
Ben Eills <ben@beneills.com> Ben Eills <ben@beneills.com>
Colin Ray <r.colinray@gmail.com> Colin Ray <r.colinray@gmail.com>
Corey Farwell <coreyf@rwell.org> Corey Farwell <coreyf@rwell.org>

View File

@ -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. 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. 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) ## 0.2.23 (2016-08-03)
### Added ### Added

View File

@ -1,6 +1,6 @@
[package] [package]
name = "chrono" name = "chrono"
version = "0.2.23" version = "0.2.24"
authors = ["Kang Seonghoon <public+rust@mearie.org>"] authors = ["Kang Seonghoon <public+rust@mearie.org>"]
description = "Date and time library for Rust" description = "Date and time library for Rust"

View File

@ -1,4 +1,4 @@
[Chrono][doc] 0.2.23 [Chrono][doc] 0.2.24
==================== ====================
[![Chrono on Travis CI][travis-image]][travis] [![Chrono on Travis CI][travis-image]][travis]

View File

@ -2,7 +2,7 @@
// Copyright (c) 2014-2015, Kang Seonghoon. // Copyright (c) 2014-2015, Kang Seonghoon.
// See README.md and LICENSE.txt for details. // 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`) //! Date and time handling for Rust. (also known as `rust-chrono`)
//! It aims to be a feature-complete superset of //! It aims to be a feature-complete superset of