Skip to content

Commit

Permalink
v0.9.10-macro
Browse files Browse the repository at this point in the history
  • Loading branch information
nazmulidris committed Sep 12, 2024
1 parent 0de6417 commit f97002d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -788,6 +789,13 @@ the `ok!()` macro.
## `r3bl_rs_utils_macro`
<a id="markdown-r3bl_rs_utils_macro" name="r3bl_rs_utils_macro"></a>

### v0.9.10 (2024-09-12)
<a id="markdown-v0.9.10-2024-09-12" name="v0.9.10-2024-09-12"></a>

- 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)
<a id="markdown-v0.9.9-2024-04-16" name="v0.9.9-2024-04-16"></a>

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions docs/release-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 ..
Expand Down
4 changes: 2 additions & 2 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "r3bl_rs_utils_macro"
version = "0.9.9"
version = "0.9.10"
edition = "2021"
resolver = "2"
description = """
Expand All @@ -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 = [
Expand Down

0 comments on commit f97002d

Please sign in to comment.