diff --git a/CHANGELOG.md b/CHANGELOG.md
index c1d5929535..abec9fa6d4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,12 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
-## Unreleased
+## [0.30.0] - 2023-07-17
### Added
- Added `DataTable.remove_column` method https://github.com/Textualize/textual/pull/2899
- Added notifications https://github.com/Textualize/textual/pull/2866
+- Added `on_complete` callback to scroll methods https://github.com/Textualize/textual/pull/2903
### Fixed
@@ -1117,6 +1118,7 @@ https://textual.textualize.io/blog/2022/11/08/version-040/#version-040
- New handler system for messages that doesn't require inheritance
- Improved traceback handling
+[0.30.0]: https://github.com/Textualize/textual/compare/v0.29.0...v0.30.0
[0.29.0]: https://github.com/Textualize/textual/compare/v0.28.1...v0.29.0
[0.28.1]: https://github.com/Textualize/textual/compare/v0.28.0...v0.28.1
[0.28.0]: https://github.com/Textualize/textual/compare/v0.27.0...v0.28.0
diff --git a/docs/blog/posts/release0-30-0.md b/docs/blog/posts/release0-30-0.md
new file mode 100644
index 0000000000..0e0be12f73
--- /dev/null
+++ b/docs/blog/posts/release0-30-0.md
@@ -0,0 +1,80 @@
+---
+draft: false
+date: 2023-07-17
+categories:
+ - Release
+title: "Textual 0.30.0 adds desktop-style notifications"
+authors:
+ - willmcgugan
+---
+
+# Textual 0.30.0 adds desktop-style notifications
+
+We have a new release of Textual to talk about, but before that I'd like to cover a little Textual news.
+
+
+
+By sheer coincidence we reached [20,000 stars on GitHub](https://github.com/Textualize/textual) today.
+Now stars don't mean all that much (at least until we can spend them on coffee), but its nice to know that twenty thousand developers thought Textual was interesting enough to hit the ★ button.
+Thank you!
+
+In other news: we moved office.
+We are now a stone's throw away from Edinburgh Castle.
+The office is around three times as big as the old place, which means we have room for wide standup desks and dual monitors.
+But more importantly we have room for new employees.
+Don't send your CVs just yet, but we hope to grow the team before the end of the year.
+
+Exciting times.
+
+## New Release
+
+And now, for the main feature.
+Version 0.30 adds a new notification system.
+Similar to desktop notifications, it displays a small window with a title and message (called a *toast*) for a pre-defined number of seconds.
+
+Notifications are great for short timely messages to add supplementary information for the user.
+Here it is in action:
+
+
+
+
+
+The API is super simple.
+To display a notification, call `notify()` with a message and an optional title.
+
+```python
+def on_mount(self) -> None:
+ self.notify("Hello, from Textual!", title="Welcome")
+```
+
+## Textualize Video Channel
+
+In case you missed it; Textualize now has a [YouTube](https://www.youtube.com/channel/UCo4nHAZv_cIlAiCSP2IyiOA) channel.
+Our very own [Rodrigo](https://twitter.com/mathsppblog) has recorded a video tutorial series on how to build Textual apps.
+Check it out!
+
+