From d789e3e49358d6934ef1c26c315350267810cc6c Mon Sep 17 00:00:00 2001 From: Kang Seonghoon Date: Sat, 23 Jan 2016 14:41:12 +0900 Subject: [PATCH] 0.2.18: Get rid of a superfluous `rand` dependency. (#57) --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dab70e6..70e5445 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ 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.18 (2016-01-23) + +### Fixed + +- Chrono no longer pulls a superfluous `rand` dependency. (#57) + ## 0.2.17 (2015-11-22) ### Added diff --git a/Cargo.toml b/Cargo.toml index 9a5ac5d..9b7bff2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chrono" -version = "0.2.17" +version = "0.2.18" authors = ["Kang Seonghoon "] description = "Date and time library for Rust" diff --git a/README.md b/README.md index 6fc8ff1..c1143d4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[Chrono][doc] 0.2.17 +[Chrono][doc] 0.2.18 ==================== [![Chrono on Travis CI][travis-image]][travis] diff --git a/src/lib.rs b/src/lib.rs index 5b24cbc..a6e0f4c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,7 @@ // Copyright (c) 2014-2015, Kang Seonghoon. // See README.md and LICENSE.txt for details. -//! # Chrono 0.2.17 +//! # Chrono 0.2.18 //! //! Date and time handling for Rust. (also known as `rust-chrono`) //! It aims to be a feature-complete superset of