diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8e072bcc7325371e5c54fb802cfddbd59a7d19fd..a3a5d5cbb5e0fe8e3c841da99a82ca1eb6e5cf70 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,7 +3,7 @@
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
-## [Unreleased]
+## [0.5.0] - 2022-08-04
 
 ### Added
 
diff --git a/Cargo.toml b/Cargo.toml
index 3047136ce623e03aafd978fdeef72c44378e53e5..e71e4411a2a09e9ab4eb39a47af25a707d998b74 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "bevy_tweening"
-version = "0.5.0-dev"
+version = "0.5.0"
 authors = ["François Mockers <mockersf@gmail.com>", "Jerome Humbert <djeedai@gmail.com>"]
 edition = "2021"
 description = "Tweening animation plugin for the Bevy game engine"
diff --git a/README.md b/README.md
index 39e4e6bb529ba66486969b76b450a0fa9f8a52d2..b82d9c62ab6d6ba1c7ef0a3afffdeab4af8ac943 100644
--- a/README.md
+++ b/README.md
@@ -24,7 +24,7 @@ Add to `Cargo.toml`:
 
 ```toml
 [dependencies]
-bevy_tweening = "0.4"
+bevy_tweening = "0.5"
 ```
 
 This crate supports the following features:
@@ -294,11 +294,12 @@ Compatibility of `bevy_tweening` versions:
 
 | `bevy_tweening` | `bevy` |
 | :--             | :--    |
+| `0.5`           | `0.8`  |
 | `0.4`           | `0.7`  |
 | `0.2`-`0.3`     | `0.6`  |
 | `0.1`           | `0.5`  |
 
-Due to the fast-moving nature of Bevy and frequent breaking changes, and the limited resources to maintan 🍃 Bevy Tweening, the `main` (unreleased) Bevy branch is not supported.
+Due to the fast-moving nature of Bevy and frequent breaking changes, and the limited resources to maintan 🍃 Bevy Tweening, the `main` (unreleased) Bevy branch is not supported. However the `bevy_tweening` crate is upgraded shortly after each new `bevy` release to support the newly released version.
 
 ## Comparison with `bevy_easings`
 
diff --git a/release.md b/release.md
index b196577b40ddbdefe0418c940e602777a33ab5a3..c51f92f3f28056b57e4b8f017fd819b758847699 100644
--- a/release.md
+++ b/release.md
@@ -3,9 +3,10 @@
 - Update `CHANGELOG` with date and version
 - Update `Cargo.toml` with version
 - Update `README.md` and other images to point to github raw content at commit SHA1 of current HEAD
+- Update other documentation links to point to the new Bevy release (if any) on `docs.rs`
 - `cargo fmt --all`
-- `cargo build`
+- `cargo test --no-default-features`
+- `cargo test --all-features`
 - `cargo clippy --workspace --all-targets --all-features -- -D warnings`
-- `cargo test`
 - `cargo doc --no-deps`
-- `cargo +nightly build` (for `docs.rs`)
+- `cargo +nightly build --all-features` (for `docs.rs`)