0.1.7: language changes.
- `Eq` no longer accepts the reflexive type parameter. (this doesn't change the actual interface, as `Eq` is simply a marker for total ordering. `PartialEq` retains it.)
This commit is contained in:
parent
50ce557d7d
commit
84f4eb478c
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "chrono"
|
name = "chrono"
|
||||||
version = "0.1.6"
|
version = "0.1.7"
|
||||||
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"
|
||||||
|
@ -15,5 +15,5 @@ license = "MIT/Apache-2.0"
|
||||||
name = "chrono"
|
name = "chrono"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
time = "0.1.4"
|
time = "0.1.5"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue