Skip to content

Commit

Permalink
v0.2.8-redux
Browse files Browse the repository at this point in the history
  • Loading branch information
nazmulidris committed Sep 12, 2024
1 parent f97002d commit 8c83a5d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@
- [v0.1.1 2023-10-17](#v011-2023-10-17)
- [v0.1.0 2023-10-14](#v010-2023-10-14)
- [r3bl_rs_utils_redux](#r3bl_rs_utils_redux)
- [v0.2.8 2024-09-12](#v028-2024-09-12)
- [v0.2.7 2024-09-07](#v027-2024-09-07)
- [v0.2.6 2023-10-21](#v026-2023-10-21)
- [v0.2.5 2023-10-17](#v025-2023-10-17)
Expand Down Expand Up @@ -1152,6 +1153,13 @@ This is the first release of this crate.
## `r3bl_rs_utils_redux`
<a id="markdown-r3bl_rs_utils_redux" name="r3bl_rs_utils_redux"></a>

### v0.2.8 (2024-09-12)
<a id="markdown-v0.2.8-2024-09-12" name="v0.2.8-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.2.7 (2024-09-07)
<a id="markdown-v0.2.7-2024-09-07" name="v0.2.7-2024-09-07"></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.

4 changes: 2 additions & 2 deletions docs/release-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ cargo build; cargo test; cargo doc --no-deps; cargo clippy --fix --allow-dirty -
cargo publish --dry-run --allow-dirty
cargo readme > README.md
git add -A
git commit -S -m "v0.2.7-redux"
git tag -a v0.2.7-redux -m "v0.2.7-redux"
git commit -S -m "v0.2.8-redux"
git tag -a v0.2.8-redux -m "v0.2.8-redux"
cargo publish
git push ; git push --tags # Push tags & commits
cd ..
Expand Down
6 changes: 3 additions & 3 deletions redux/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "r3bl_redux"
version = "0.2.7"
version = "0.2.8"
edition = "2021"
resolver = "2"
description = "Redux library built using Tokio, concurrent & parallel"
Expand All @@ -26,8 +26,8 @@ path = "src/lib.rs"

[dependencies]
# r3bl-open-core.
r3bl_rs_utils_core = { path = "../core" }
r3bl_rs_utils_macro = { path = "../macro" }
r3bl_rs_utils_core = { path = "../core", version = "0.9.16" } # version is requried to publish to crates.io
r3bl_rs_utils_macro = { path = "../macro", version = "0.9.10" } # version is requried to publish to crates.io

# Time
chrono = "0.4.38"
Expand Down

0 comments on commit 8c83a5d

Please sign in to comment.