0.2.20: Updated `serde` dependency. (#63, #64)

This commit is contained in:
Kang Seonghoon 2016-03-06 00:19:29 +09:00
parent daf7a08ad3
commit 530a5ee10b
5 changed files with 10 additions and 3 deletions

View File

@ -12,6 +12,7 @@ Jisoo Park <xxxyel@gmail.com>
John Nagle <nagle@sitetruth.com> John Nagle <nagle@sitetruth.com>
Ken Tossell <ken@tossell.net> Ken Tossell <ken@tossell.net>
Martin Risell Lilja <martin.risell.lilja@gmail.com> Martin Risell Lilja <martin.risell.lilja@gmail.com>
Ryan Lewis <ryansname@gmail.com>
Steve Klabnik <steve@steveklabnik.com> Steve Klabnik <steve@steveklabnik.com>
Tom Gallacher <tomgallacher23@gmail.com> Tom Gallacher <tomgallacher23@gmail.com>
klutzy <klutzytheklutzy@gmail.com> klutzy <klutzytheklutzy@gmail.com>

View File

@ -8,6 +8,12 @@ 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.20 (2016-03-06)
### Changed
- `serde` dependency has been updated to 0.7. (#63, #64)
## 0.2.19 (2016-02-05) ## 0.2.19 (2016-02-05)
### Added ### Added

View File

@ -1,6 +1,6 @@
[package] [package]
name = "chrono" name = "chrono"
version = "0.2.19" version = "0.2.20"
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.19 [Chrono][doc] 0.2.20
==================== ====================
[![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.19 //! # Chrono 0.2.20
//! //!
//! 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