Skip to content

Commit

Permalink
chore: version bump 0.8.34 (#1306)
Browse files Browse the repository at this point in the history
Description
---
Onwards and upwards
  • Loading branch information
brianp authored Dec 23, 2024
2 parents 91b07f5 + 94188ef commit c426127
Show file tree
Hide file tree
Showing 44 changed files with 255 additions and 256 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tari-universe",
"private": true,
"version": "0.8.33",
"version": "0.8.34",
"type": "module",
"scripts": {
"dev": "vite dev --mode development",
Expand Down
86 changes: 43 additions & 43 deletions src-tauri/Cargo.lock

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

16 changes: 8 additions & 8 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Tari Universe"
edition = "2021"
name = "tari-universe"
repository = "https://github.com/tari-project/universe"
version = "0.8.33"
version = "0.8.34"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down Expand Up @@ -38,8 +38,8 @@ libsqlite3-sys = { version = "0.25.1", features = [
] } # Required for tari_wallet
log = "0.4.22"
log4rs = "1.3.0"
minotari_node_grpc_client = { git = "https://github.com/tari-project/tari.git", rev = "37c30be" }
minotari_wallet_grpc_client = { git = "https://github.com/tari-project/tari.git", rev = "37c30be" }
minotari_node_grpc_client = { git = "https://github.com/tari-project/tari.git", tag = "v1.9.1-rc.1" }
minotari_wallet_grpc_client = { git = "https://github.com/tari-project/tari.git", tag = "v1.9.1-rc.1" }
monero-address-creator = { git = "https://github.com/tari-project/monero-address-creator.git", rev = "6129ca0" }
nix = { version = "0.29.0", features = ["signal"] }
nvml-wrapper = "0.10.0"
Expand All @@ -58,15 +58,15 @@ sha2 = "0.10.8"
sys-locale = "0.3.1"
sysinfo = "0.31.2"
tar = "0.4.26"
tari_common = { git = "https://github.com/tari-project/tari.git", rev = "37c30be" }
tari_common_types = { git = "https://github.com/tari-project/tari.git", rev = "37c30be" }
tari_core = { git = "https://github.com/tari-project/tari.git", rev = "37c30be", features = [
tari_common = { git = "https://github.com/tari-project/tari.git", tag = "v1.9.1-rc.1" }
tari_common_types = { git = "https://github.com/tari-project/tari.git", tag = "v1.9.1-rc.1" }
tari_core = { git = "https://github.com/tari-project/tari.git", tag = "v1.9.1-rc.1", features = [
"transactions",
] }
tauri-plugin-single-instance = { git = "https://github.com/tari-project/tauri-plugins-workspace", rev = "09f29b0abe2cb1eb81365b65a3aa3f73325e4e17" }
tari_crypto = "0.21.0"
tari_key_manager = { git = "https://github.com/tari-project/tari.git", rev = "37c30be" }
tari_shutdown = { git = "https://github.com/tari-project/tari.git", rev = "37c30be" }
tari_key_manager = { git = "https://github.com/tari-project/tari.git", tag = "v1.9.1-rc.1" }
tari_shutdown = { git = "https://github.com/tari-project/tari.git", tag = "v1.9.1-rc.1" }
tari_utilities = "0.8.0"
tauri = { git = "https://github.com/tari-project/tauri.git", rev = "67a06c8a9bae94f412b8059dfa8b4d8dd8ea0a25", features = [
"macos-private-api",
Expand Down
7 changes: 7 additions & 0 deletions src-tauri/src/gpu_miner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,13 @@ impl GpuMiner {
pub async fn stop(&self) -> Result<(), anyhow::Error> {
info!(target: LOG_TARGET, "Stopping xtrgpuminer");
let mut process_watcher = self.watcher.write().await;
let _res = process_watcher
.adapter
.latest_status_broadcast
.send(GpuMinerStatus {
is_mining: false,
..GpuMinerStatus::default()
});
process_watcher.status_monitor = None;
process_watcher.stop().await?;
info!(target: LOG_TARGET, "xtrgpuminer stopped");
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/gpu_miner_adapter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ pub(crate) struct GpuMinerAdapter {
pub(crate) coinbase_extra: String,
pub(crate) excluded_gpu_devices: Vec<u8>,
pub(crate) gpu_devices: Vec<GpuConfig>,
latest_status_broadcast: watch::Sender<GpuMinerStatus>,
pub(crate) latest_status_broadcast: watch::Sender<GpuMinerStatus>,
}

impl GpuMinerAdapter {
Expand Down
4 changes: 2 additions & 2 deletions src-tauri/src/wallet_adapter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,8 @@ pub struct TransactionInfo {
pub is_cancelled: bool,
pub excess_sig: String,
pub timestamp: u64,
pub message: String,
pub payment_id: String,
pub mined_in_block_height: u64,
}

impl WalletStatusMonitor {
Expand Down Expand Up @@ -324,8 +324,8 @@ impl WalletStatusMonitor {
is_cancelled: tx.is_cancelled,
excess_sig: tx.excess_sig.to_hex(),
timestamp: tx.timestamp,
message: tx.message,
payment_id: tx.payment_id.to_hex(),
mined_in_block_height: tx.mined_in_block_height,
});
}
Ok(transactions)
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.8.33",
"version": "0.8.34",
"productName": "Tari Universe (Alpha)",
"mainBinaryName": "Tari Universe (Alpha)",
"identifier": "com.tari.universe.alpha",
Expand Down
Loading

0 comments on commit c426127

Please sign in to comment.