From 39c95d6206763ad282388d061db0bb2b2375201d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauren=C8=9Biu=20Nicola?= Date: Thu, 12 Jul 2018 00:09:37 +0200 Subject: [PATCH] tokio-fs: Bump version to 0.1.2 (#469) * Add a couple of missing full stops in the documentation --- tokio-fs/CHANGELOG.md | 2 +- tokio-fs/Cargo.toml | 2 +- tokio-fs/src/file/seek.rs | 2 +- tokio-fs/src/lib.rs | 2 +- tokio-fs/src/metadata.rs | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tokio-fs/CHANGELOG.md b/tokio-fs/CHANGELOG.md index 931e3c78d..5e161ee74 100644 --- a/tokio-fs/CHANGELOG.md +++ b/tokio-fs/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.1.2 (Unreleased) +# 0.1.2 (July 11, 2018) * Add `metadata` and `File::metadata` ([#433](https://github.com/tokio-rs/tokio/pull/433), [#385](https://github.com/tokio-rs/tokio/pull/385)) * Add `File::seek` ([#434](https://github.com/tokio-rs/tokio/pull/434)) diff --git a/tokio-fs/Cargo.toml b/tokio-fs/Cargo.toml index 3413f09b8..c16c69488 100644 --- a/tokio-fs/Cargo.toml +++ b/tokio-fs/Cargo.toml @@ -5,7 +5,7 @@ name = "tokio-fs" # - Update html_root_url. # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.1" +version = "0.1.2" authors = ["Carl Lerche "] license = "MIT" readme = "README.md" diff --git a/tokio-fs/src/file/seek.rs b/tokio-fs/src/file/seek.rs index e3523870c..0765d3db9 100644 --- a/tokio-fs/src/file/seek.rs +++ b/tokio-fs/src/file/seek.rs @@ -4,7 +4,7 @@ use futures::{Future, Poll}; use std::io; -/// Future returned by `File::seek` +/// Future returned by `File::seek`. #[derive(Debug)] pub struct SeekFuture { inner: Option, diff --git a/tokio-fs/src/lib.rs b/tokio-fs/src/lib.rs index 076ff5cfa..3ce63f817 100644 --- a/tokio-fs/src/lib.rs +++ b/tokio-fs/src/lib.rs @@ -26,7 +26,7 @@ //! [tokio-threadpool]: https://docs.rs/tokio-threadpool/0.1/tokio_threadpool #![deny(missing_docs, missing_debug_implementations, warnings)] -#![doc(html_root_url = "https://docs.rs/tokio-fs/0.1.1")] +#![doc(html_root_url = "https://docs.rs/tokio-fs/0.1.2")] #[macro_use] extern crate futures; diff --git a/tokio-fs/src/metadata.rs b/tokio-fs/src/metadata.rs index 9000cb1ba..200d58e08 100644 --- a/tokio-fs/src/metadata.rs +++ b/tokio-fs/src/metadata.rs @@ -6,7 +6,7 @@ use std::fs::{self, Metadata}; use std::io; use std::path::Path; -/// Queries the file system metadata for a path +/// Queries the file system metadata for a path. pub fn metadata

(path: P) -> MetadataFuture

where P: AsRef + Send + 'static, @@ -14,7 +14,7 @@ where MetadataFuture::new(path) } -/// Future returned by `metadata` +/// Future returned by `metadata`. #[derive(Debug)] pub struct MetadataFuture

where