diff --git a/CHANGELOG.md b/CHANGELOG.md
index a7f13979f..b9bd9451f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -59,6 +59,7 @@
- [v0.0.2 2024-09-12](#v002-2024-09-12)
- [v0.0.1 2023-12-31](#v001-2023-12-31)
- [r3bl_rs_utils_macro](#r3bl_rs_utils_macro)
+ - [v0.9.10 2024-09-12](#v0910-2024-09-12)
- [v0.9.9 2024-04-16](#v099-2024-04-16)
- [v0.9.8 2023-12-22](#v098-2023-12-22)
- [v0.9.7 2023-10-21](#v097-2023-10-21)
@@ -788,6 +789,13 @@ the `ok!()` macro.
## `r3bl_rs_utils_macro`
+### v0.9.10 (2024-09-12)
+
+
+- Updated:
+ - Upgrade all deps to their latest versions in `Cargo.toml` and `Cargo.lock`.
+ - Improve docs in `lib.rs` and `README.md`.
+
### v0.9.9 (2024-04-16)
diff --git a/Cargo.lock b/Cargo.lock
index f53a640da..7668b8475 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1963,7 +1963,7 @@ dependencies = [
[[package]]
name = "r3bl_rs_utils_macro"
-version = "0.9.9"
+version = "0.9.10"
dependencies = [
"paste",
"pretty_assertions",
diff --git a/docs/release-guide.md b/docs/release-guide.md
index a9cf6c015..3a27d7bea 100644
--- a/docs/release-guide.md
+++ b/docs/release-guide.md
@@ -59,12 +59,13 @@ cd macro
# Update CHANGELOG.md
# Run "Dependi: Update All dependencies to the latest version" in vscode w/ the Cargo.toml file open
# - instead of using `cargo-edit` https://github.com/killercup/cargo-edit and the `cargo upgrade` command
+cargo update --verbose # Update Cargo.lock file (not Cargo.toml)
cargo build; cargo test; cargo doc --no-deps; cargo clippy --fix --allow-dirty --allow-staged
cargo publish --dry-run --allow-dirty
cargo readme > README.md
git add -A
-git commit -S -m "v0.9.9-macro"
-git tag -a v0.9.9-macro -m "v0.9.9-macro"
+git commit -S -m "v0.9.10-macro"
+git tag -a v0.9.10-macro -m "v0.9.10-macro"
cargo publish
git push ; git push --tags # Push tags & commits
cd ..
diff --git a/macro/Cargo.toml b/macro/Cargo.toml
index 42ef7a957..7c02a623e 100644
--- a/macro/Cargo.toml
+++ b/macro/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "r3bl_rs_utils_macro"
-version = "0.9.9"
+version = "0.9.10"
edition = "2021"
resolver = "2"
description = """
@@ -27,7 +27,7 @@ path = "src/lib.rs"
# [Nesting crates for procedural macros](https://stackoverflow.com/a/64288799/2085356)
[dependencies]
-r3bl_rs_utils_core = { path = "../core", version = "0.9.13" }
+r3bl_rs_utils_core = { path = "../core", version = "0.9.16" }
# https://github.com/dtolnay/proc-macro-workshop#debugging-tips
syn = { version = "2.0.77", features = [