Skip to content

Commit

Permalink
v0.0.15-cmdr
Browse files Browse the repository at this point in the history
  • Loading branch information
nazmulidris committed Sep 12, 2024
1 parent 71a0c62 commit 713d52f
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 11 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<!-- TOC -->

- [r3bl-cmdr](#r3bl-cmdr)
- [v0.0.15 2024-09-12](#v0015-2024-09-12)
- [v0.0.14 2024-06-29](#v0014-2024-06-29)
- [v0.0.13 2024-05-20](#v0013-2024-05-20)
- [v0.0.12 2024-05-12](#v0012-2024-05-12)
Expand Down Expand Up @@ -116,6 +117,15 @@
## `r3bl-cmdr`
<a id="markdown-r3bl-cmdr" name="r3bl-cmdr"></a>

### v0.0.15 (2024-09-12)
<a id="markdown-v0.0.15-2024-09-12" name="v0.0.15-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`.
- Update `UPDATE_IF_NOT_THIS_VERSION` to `0.0.15`. This is kept in sync w/ the deployed
backend `r3bl-base`.

### v0.0.14 (2024-06-29)
<a id="markdown-v0.0.14-2024-06-29" name="v0.0.14-2024-06-29"></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.

14 changes: 7 additions & 7 deletions cmdr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "r3bl-cmdr"
version = "0.0.14"
version = "0.0.15"
readme = "README.md"
edition = "2021"
homepage = "https://r3bl.com"
Expand Down Expand Up @@ -43,12 +43,12 @@ path = "src/lib.rs"

[dependencies]
# R3BL crates (from this mono repo).
r3bl_ansi_color = { path = "../ansi_color" }
r3bl_rs_utils_core = { path = "../core" }
r3bl_rs_utils_macro = { path = "../macro" }
r3bl_tui = { path = "../tui" }
r3bl_tuify = { path = "../tuify" }
r3bl_analytics_schema = { path = "../analytics_schema" }
r3bl_ansi_color = { path = "../ansi_color", version = "0.6.10" } # version is requried to publish to crates.io
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
r3bl_tui = { path = "../tui", version = "0.5.9" } # version is requried to publish to crates.io
r3bl_tuify = { path = "../tuify", version = "0.1.27" } # version is requried to publish to crates.io
r3bl_analytics_schema = { path = "../analytics_schema", version = "0.0.2" } # version is requried to publish to crates.io
log = { version = "0.4.22", features = ["std"] }

# Tokio.
Expand Down
2 changes: 1 addition & 1 deletion cmdr/src/analytics_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ pub mod upgrade_check {

static UPDATE_REQUIRED: AtomicBool = AtomicBool::new(false);

const UPDATE_IF_NOT_THIS_VERSION: &str = "0.0.14";
const UPDATE_IF_NOT_THIS_VERSION: &str = "0.0.15";

const GET_LATEST_VERSION_ENDPOINT: &str =
"https://r3bl-base.shuttleapp.rs/get_latest_version"; // "http://localhost:8000/get_latest_version"
Expand Down
4 changes: 2 additions & 2 deletions docs/release-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,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.0.14-cmdr"
git tag -a v0.0.14-cmdr -m "v0.0.14-cmdr"
git commit -S -m "v0.0.15-cmdr"
git tag -a v0.0.15-cmdr -m "v0.0.15-cmdr"
cargo publish
# 2) Don't forget to test the release on a clean machine by running `cargo install r3bl-cmdr`
# You can do this using `cd cmdr && nu run build-release-in-docker`
Expand Down

0 comments on commit 713d52f

Please sign in to comment.