Skip to content

Commit

Permalink
Merge pull request #84 from appcypher/appcypher/0.2.1-update
Browse files Browse the repository at this point in the history
- Updated `monoutils-store` dependency version from `0.2.0` to `0.2` in `Cargo.toml`.
- Changed the default version in `install_monocore.sh` from `0.2.0` to `0.2.1`.

These changes ensure the project uses the correct version of `monoutils-store` and reflects the latest version in the installation script.
  • Loading branch information
appcypher authored Dec 11, 2024
2 parents 741a487 + 43106f1 commit 299b108
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ lazy_static = "1.5"
procspawn = "1.0"
rand = "0.8"
reqwest = { version = "0.12", features = ["stream", "json"] }
reqwest-middleware = "0.3" # Cannot upgrade to 0.4 due to https://github.com/TrueLayer/reqwest-middleware/issues/204
reqwest-retry = "0.6" # Cannot upgrade to 0.7 due to https://github.com/TrueLayer/reqwest-retry/issues/100
monoutils-store = { version = "0.2.0", path = "./monoutils-store" }
reqwest-middleware = "0.3" # Cannot upgrade to 0.4 due to https://github.com/TrueLayer/reqwest-middleware/issues/204
reqwest-retry = "0.6" # Cannot upgrade to 0.7 due to https://github.com/TrueLayer/reqwest-retry/issues/100
monoutils-store = { version = "0.2", path = "./monoutils-store" }
chrono = { version = "0.4", features = ["serde"] }
criterion = "0.5"
test-log = "0.2"
Expand Down
4 changes: 2 additions & 2 deletions install_monocore.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# ./install_monocore.sh [options]
#
# Options:
# --version Specify version to install (default: 0.2.0)
# --version Specify version to install (default: 0.2.1)
# --no-cleanup Skip cleanup of temporary files after installation
#
# The script performs the following tasks:
Expand Down Expand Up @@ -43,7 +43,7 @@ error() {
}

# Default values
VERSION="0.2.0"
VERSION="0.2.1"
NO_CLEANUP=false
TEMP_DIR="/tmp/monocore-install"
GITHUB_REPO="appcypher/monocore"
Expand Down

0 comments on commit 299b108

Please sign in to comment.