0.2.0: offset reform, new format/parse module, various cleanups.
Fixes #11 and #12. The complete list of changes is available in [CHANGELOG.md]. [CHANGELOG.md]: https://github.com/lifthrasiir/rust-chrono/blob/master/CHANGELOG.md#020-2015-02-19
This commit is contained in:
parent
6a9490522e
commit
be6a721be6
|
@ -8,7 +8,7 @@ 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.0 (UNRELEASED)
|
||||
## 0.2.0 (2015-02-19)
|
||||
|
||||
### Added
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "chrono"
|
||||
version = "0.2.0-dev"
|
||||
version = "0.2.0"
|
||||
authors = ["Kang Seonghoon <public+rust@mearie.org>"]
|
||||
|
||||
description = "Date and time library for Rust"
|
||||
|
@ -15,5 +15,5 @@ license = "MIT/Apache-2.0"
|
|||
name = "chrono"
|
||||
|
||||
[dependencies]
|
||||
time = "0.1.16"
|
||||
time = "0.1.17"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[Chrono][doc] 0.2.0-dev
|
||||
=======================
|
||||
[Chrono][doc] 0.2.0
|
||||
===================
|
||||
|
||||
[![Chrono on Travis CI][travis-image]][travis]
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
/*!
|
||||
|
||||
# Chrono 0.2.0-dev
|
||||
# Chrono 0.2.0
|
||||
|
||||
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