0.2.19: `DateTime::date` (and indirectly, `Local::today`) fix. (#61)

This commit is contained in:
Kang Seonghoon 2016-02-05 01:32:57 +09:00
parent 4025d617f5
commit aa6df02436
5 changed files with 15 additions and 4 deletions

View File

@ -15,3 +15,4 @@ Martin Risell Lilja <martin.risell.lilja@gmail.com>
Steve Klabnik <steve@steveklabnik.com>
Tom Gallacher <tomgallacher23@gmail.com>
klutzy <klutzytheklutzy@gmail.com>
kud1ing <github@kudling.de>

View File

@ -8,6 +8,16 @@ 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.19 (2016-02-05)
### Added
- The documentation for `Date` is made clear about its ambiguity and guarantees.
### Fixed
- `DateTime::date` had been wrong when the local date and the UTC date is in disagreement. (#61)
## 0.2.18 (2016-01-23)
### Fixed

View File

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

View File

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

View File

@ -2,11 +2,11 @@
// Copyright (c) 2014-2015, Kang Seonghoon.
// See README.md and LICENSE.txt for details.
//! # Chrono 0.2.18
//! # Chrono 0.2.19
//!
//! 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.
//! the [time](https://github.com/rust-lang-deprecated/time) library.
//! In particular,
//!
//! * Chrono strictly adheres to ISO 8601.