0.2.19: `DateTime::date` (and indirectly, `Local::today`) fix. (#61)
This commit is contained in:
parent
4025d617f5
commit
aa6df02436
|
@ -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>
|
||||
|
|
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
[Chrono][doc] 0.2.18
|
||||
[Chrono][doc] 0.2.19
|
||||
====================
|
||||
|
||||
[![Chrono on Travis CI][travis-image]][travis]
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue