From be6a721be604bdff7901b02c994f28c111fba916 Mon Sep 17 00:00:00 2001 From: Kang Seonghoon Date: Thu, 19 Feb 2015 05:10:35 +0900 Subject: [PATCH] 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 --- CHANGELOG.md | 2 +- Cargo.toml | 4 ++-- README.md | 4 ++-- src/lib.rs | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1e7e7e..a134ce7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 6b45c5e..36466f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chrono" -version = "0.2.0-dev" +version = "0.2.0" authors = ["Kang Seonghoon "] 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" diff --git a/README.md b/README.md index 99c319b..031f41e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[Chrono][doc] 0.2.0-dev -======================= +[Chrono][doc] 0.2.0 +=================== [![Chrono on Travis CI][travis-image]][travis] diff --git a/src/lib.rs b/src/lib.rs index 57d8cdb..58a641d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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.