From ff0249f3cd4d280a73d77f8384bb0aeae5a2e6ca Mon Sep 17 00:00:00 2001 From: chalith Date: Tue, 30 Apr 2024 08:50:46 +0530 Subject: [PATCH] Updated the version --- installer/setup.sh | 5 ++--- mb-xrpl/lib/appenv.js | 2 +- reputationd/lib/appenv.js | 2 +- src/version.hpp | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/installer/setup.sh b/installer/setup.sh index fc8b272..374128a 100755 --- a/installer/setup.sh +++ b/installer/setup.sh @@ -2401,9 +2401,8 @@ WantedBy=timers.target" >/etc/systemd/system/$EVERNODE_AUTO_UPDATE_SERVICE.timer update_evernode echomult "Upgrade complete! - \n\nNOTE: This update includes following commands for you to configure extra transaction fee and fallback xahaud servers. - \n evernode config extrafee - Configure extra transaction fee. - \n evernode config xahaud-fallback - Configure fallback xahaud servers." + \n\nNOTE: This update includes following commands for you to configure reputation for reward distribution. + \n evernode config reputationd - Opt-in or opt-out for Evernode reputation for reward distribution." elif [ "$mode" == "log" ]; then create_log diff --git a/mb-xrpl/lib/appenv.js b/mb-xrpl/lib/appenv.js index b05efcc..60a4f6a 100644 --- a/mb-xrpl/lib/appenv.js +++ b/mb-xrpl/lib/appenv.js @@ -45,7 +45,7 @@ appenv = { ORPHAN_PRUNE_SCHEDULER_INTERVAL_HOURS: 4, SASHIMONO_SCHEDULER_INTERVAL_SECONDS: 2, SASHI_CLI_PATH: appenv.IS_DEV_MODE ? "../build/sashi" : "/usr/bin/sashi", - MB_VERSION: '0.8.2', + MB_VERSION: '0.8.3', TOS_HASH: '0801677EBCB2F76EF97D531549D8B27DB2C7A4A8EE7F60032AE40184247F0810', // This is the sha256 hash of EVERNODE-HOSTING-PRINCIPLES.pdf. NETWORK: 'mainnet', REPUTATIOND_CONFIG_PATH: path.join(appenv.DATA_DIR, '../') + "reputationd/reputationd.cfg", diff --git a/reputationd/lib/appenv.js b/reputationd/lib/appenv.js index d735a52..1b147be 100644 --- a/reputationd/lib/appenv.js +++ b/reputationd/lib/appenv.js @@ -12,7 +12,7 @@ appenv = { ...appenv, CONFIG_PATH: appenv.DATA_DIR + '/reputationd.cfg', LOG_PATH: appenv.DATA_DIR + '/log/reputationd.log', - REPUTATIOND_VERSION: '0.8.2', + REPUTATIOND_VERSION: '0.8.3', REPUTATIOND_SCHEDULER_INTERVAL_SECONDS: 2, CONTRACT_PATH: appenv.IS_DEV_MODE ? "../evernode-reputation-contract/dist" : (appenv.DATA_DIR + "/reputation-contract"), MB_XRPL_CONFIG_PATH: path.join(appenv.DATA_DIR, '../') + "mb-xrpl/mb-xrpl.cfg", diff --git a/src/version.hpp b/src/version.hpp index 1cdf878..e197923 100644 --- a/src/version.hpp +++ b/src/version.hpp @@ -6,7 +6,7 @@ namespace version { // Sashimono agent version. Written to new configs. - constexpr const char *AGENT_VERSION = "0.8.2"; + constexpr const char *AGENT_VERSION = "0.8.3"; // Minimum compatible config version (this will be used to validate configs). constexpr const char *MIN_CONFIG_VERSION = "0.5.0";