diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8840499..aa7ea75 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,9 @@
## NEXT (UNRELEASED)
+
+## 0.4.2 (2020-10-12)
+
#### Added
* Add support for cargo workspaces. Check all crates and targets in the workspaces, excluding tests, benches, and examples. [PR#68], [PR#73]
@@ -17,8 +20,8 @@
* Follow target renames. [PR#68]
* Always output all errors instead of stopping after the first error. [PR#74]
- Previously, deadlinks would stop after the first error, but leave other threads running in parallel. This would lead to non-deterministic and incomplete output if there were broken links in many different files.
- Deadlinks will now output all errors before exiting.
+Previously, deadlinks would stop after the first error, but leave other threads running in parallel. This would lead to non-deterministic and incomplete output if there were broken links in many different files.
+Deadlinks will now output all errors before exiting.
[PR#66]: https://github.com/deadlinks/cargo-deadlinks/pull/66
[PR#67]: https://github.com/deadlinks/cargo-deadlinks/pull/67
diff --git a/Cargo.lock b/Cargo.lock
index b6b02b0..d37db72 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -71,7 +71,7 @@ checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
[[package]]
name = "cargo-deadlinks"
-version = "0.4.1"
+version = "0.4.2"
dependencies = [
"assert_cmd",
"cargo_metadata",
diff --git a/Cargo.toml b/Cargo.toml
index 1c31c83..03ce191 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "cargo-deadlinks"
description = "Cargo subcommand for checking your documentation for broken links"
-version = "0.4.1"
+version = "0.4.2"
authors = ["Maximilian Goisser ", "Joshua Nelson