0.2.4: language changes and bug fixes.
This commit is contained in:
parent
2be6e14446
commit
37be780b31
|
@ -2,6 +2,7 @@ Chrono is mainly written by Kang Seonghoon <public+rust@mearie.org>,
|
|||
and also the following people (in ascending order):
|
||||
|
||||
Colin Ray <r.colinray@gmail.com>
|
||||
Dan <dan@ebip.co.uk>
|
||||
David Ross <daboross@daboross.net>
|
||||
Eunchong Yu <kroisse@gmail.com>
|
||||
John Nagle <nagle@sitetruth.com>
|
||||
|
|
|
@ -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.
|
||||
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)
|
||||
|
||||
### Added
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "chrono"
|
||||
version = "0.2.3"
|
||||
version = "0.2.4"
|
||||
authors = ["Kang Seonghoon <public+rust@mearie.org>"]
|
||||
|
||||
description = "Date and time library for Rust"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
[Chrono][doc] 0.2.3
|
||||
[Chrono][doc] 0.2.4
|
||||
===================
|
||||
|
||||
[![Chrono on Travis CI][travis-image]][travis]
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
/*!
|
||||
|
||||
# Chrono 0.2.3
|
||||
# Chrono 0.2.4
|
||||
|
||||
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.
|
||||
|
|
Loading…
Reference in New Issue