0.2.4: language changes and bug fixes.

This commit is contained in:
Kang Seonghoon 2015-03-03 02:40:03 +09:00
parent 2be6e14446
commit 37be780b31
5 changed files with 11 additions and 3 deletions

View File

@ -2,6 +2,7 @@ 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):
Colin Ray <r.colinray@gmail.com> Colin Ray <r.colinray@gmail.com>
Dan <dan@ebip.co.uk>
David Ross <daboross@daboross.net> David Ross <daboross@daboross.net>
Eunchong Yu <kroisse@gmail.com> Eunchong Yu <kroisse@gmail.com>
John Nagle <nagle@sitetruth.com> John Nagle <nagle@sitetruth.com>

View File

@ -8,6 +8,13 @@ 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.4 (2015-03-03)
### Fixed
- Clarified the meaning of `Date<Tz>` and fixed unwanted conversion problem
that only occurs with positive UTC offsets. (#27)
## 0.2.3 (2015-02-27) ## 0.2.3 (2015-02-27)
### Added ### Added

View File

@ -1,6 +1,6 @@
[package] [package]
name = "chrono" name = "chrono"
version = "0.2.3" version = "0.2.4"
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.3 [Chrono][doc] 0.2.4
=================== ===================
[![Chrono on Travis CI][travis-image]][travis] [![Chrono on Travis CI][travis-image]][travis]

View File

@ -4,7 +4,7 @@
/*! /*!
# Chrono 0.2.3 # Chrono 0.2.4
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 the [time](https://github.com/rust-lang/time) library. It aims to be a feature-complete superset of the [time](https://github.com/rust-lang/time) library.