aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStjepan Glavina <stjepang@gmail.com>2020-09-21 12:48:23 +0200
committerStjepan Glavina <stjepang@gmail.com>2020-09-21 12:48:23 +0200
commit0a2257c2e71b78e85180fdf9e22e418e74f81282 (patch)
tree1d35994b2ff24bc44c908c8c27500581d23947bd
parent4e460bb84502107557394273840ad09a893081d9 (diff)
downloadasync-task-0a2257c2e71b78e85180fdf9e22e418e74f81282.tar.gz
Bump to v4.0.1
-rw-r--r--CHANGELOG.md4
-rw-r--r--Cargo.toml2
-rw-r--r--src/task.rs2
3 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d2da09d..82c7cb1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+# Version 4.0.1
+
+- Nits in the docs.
+
# Version 4.0.0
- Rename `Task` to `Runnable`.
diff --git a/Cargo.toml b/Cargo.toml
index 875191e..563b9ee 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "async-task"
-version = "4.0.0"
+version = "4.0.1"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
license = "Apache-2.0/MIT"
diff --git a/src/task.rs b/src/task.rs
index bd6bec3..9ec4c7f 100644
--- a/src/task.rs
+++ b/src/task.rs
@@ -21,7 +21,7 @@ use crate::state::*;
///
/// Note that canceling a task actually wakes it and reschedules one last time. Then, the executor
/// can destroy the task by simply dropping its [`Runnable`][`crate::Runnable`] or by invoking
-/// [`run()`][`crate::Runnable::run()`].
+/// [`run()`][`super::Runnable::run()`].
///
/// # Examples
///