diff --git a/tracing/CHANGELOG.md b/tracing/CHANGELOG.md
index d17485283c..9019673472 100644
--- a/tracing/CHANGELOG.md
+++ b/tracing/CHANGELOG.md
@@ -1,3 +1,16 @@
+# 0.1.28 (September 17th, 2021)
+
+This release fixes an issue where the RustDoc documentation was rendered
+incorrectly. It doesn't include any actual code changes, and is very boring and
+can be ignored.
+
+### Fixed
+
+- **docs**: Incorrect documentation rendering due to unclosed `
` tag
+ ([#1572])
+
+[#1572]: https://github.com/tokio-rs/tracing/pull/1572
+
# 0.1.27 (September 13, 2021)
This release adds a new [`Span::or_current`] method to aid in efficiently
diff --git a/tracing/Cargo.toml b/tracing/Cargo.toml
index 61d4cf0dea..83e029faee 100644
--- a/tracing/Cargo.toml
+++ b/tracing/Cargo.toml
@@ -8,7 +8,7 @@ name = "tracing"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag
-version = "0.1.27"
+version = "0.1.28"
authors = ["Eliza Weisman
", "Tokio Contributors "]
license = "MIT"
readme = "README.md"
diff --git a/tracing/README.md b/tracing/README.md
index b8257015dd..a8b7d8d10e 100644
--- a/tracing/README.md
+++ b/tracing/README.md
@@ -16,9 +16,9 @@ Application-level tracing for Rust.
[Documentation][docs-url] | [Chat][discord-url]
[crates-badge]: https://img.shields.io/crates/v/tracing.svg
-[crates-url]: https://crates.io/crates/tracing/0.1.27
+[crates-url]: https://crates.io/crates/tracing/0.1.28
[docs-badge]: https://docs.rs/tracing/badge.svg
-[docs-url]: https://docs.rs/tracing/0.1.27
+[docs-url]: https://docs.rs/tracing/0.1.28
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
[docs-master-url]: https://tracing-rs.netlify.com/tracing
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
@@ -251,7 +251,7 @@ my_future
is as long as the future's.
The second, and preferred, option is through the
-[`#[instrument]`](https://docs.rs/tracing/0.1.27/tracing/attr.instrument.html)
+[`#[instrument]`](https://docs.rs/tracing/0.1.28/tracing/attr.instrument.html)
attribute:
```rust
@@ -298,7 +298,7 @@ span.in_scope(|| {
// Dropping the span will close it, indicating that it has ended.
```
-The [`#[instrument]`](https://docs.rs/tracing/0.1.27/tracing/attr.instrument.html) attribute macro
+The [`#[instrument]`](https://docs.rs/tracing/0.1.28/tracing/attr.instrument.html) attribute macro
can reduce some of this boilerplate:
```rust
diff --git a/tracing/src/lib.rs b/tracing/src/lib.rs
index ca5f93713f..a4015a9182 100644
--- a/tracing/src/lib.rs
+++ b/tracing/src/lib.rs
@@ -795,7 +795,7 @@
//!
//! ```toml
//! [dependencies]
-//! tracing = { version = "0.1.27", default-features = false }
+//! tracing = { version = "0.1.28", default-features = false }
//! ```
//!
//!
@@ -847,7 +847,7 @@
//! [flags]: #crate-feature-flags
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(docsrs, feature(doc_cfg), deny(rustdoc::broken_intra_doc_links))]
-#![doc(html_root_url = "https://docs.rs/tracing/0.1.27")]
+#![doc(html_root_url = "https://docs.rs/tracing/0.1.28")]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"