0.1.8: language changes.

- #[deriving] is now #[derive].
- prelude no longer imports many items by default.
- [T, ..n] is no longer valid.
- a temporary fix for #[derive(Hash)] failing out.
- the formatting error uses a dedicated type instead of `IoError`.
This commit is contained in:
Kang Seonghoon 2015-01-04 15:11:42 +09:00
parent 29428d0adf
commit 94df51861f
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "chrono"
version = "0.1.7"
version = "0.1.8"
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.5"
time = "0.1.7"

View File

@ -1,4 +1,4 @@
[Chrono][doc] 0.1.7
[Chrono][doc] 0.1.8
===================
[![Chrono on Travis CI][travis-image]][travis]

View File

@ -4,7 +4,7 @@
/*!
# Chrono 0.1.7
# Chrono 0.1.8
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.