From 9f45a3abccb7197fd76be2b70dff5ad53dcc3604 Mon Sep 17 00:00:00 2001 From: "hinto.janai" Date: Fri, 10 May 2024 15:17:47 -0400 Subject: [PATCH] v1.3.7 --- CHANGELOG.md | 12 ++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- src/constants.rs | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f465500..d608fbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# v1.3.7 +## Fixes +- Not starting on Windows if CPU does not support `>= OpenGL 3.3` (thanks @Cyrix126 [#78](https://github.com/hinto-janai/gupax/issues/78)) + +## Bundled Versions +* [`P2Pool v3.10`](https://github.com/SChernykh/p2pool/releases/tag/v3.10) +* [`XMRig v6.21.3`](https://github.com/xmrig/xmrig/releases/tag/v6.21.3) + + +--- + + # v1.3.6 ## Changes * [Remote Node](https://github.com/hinto-janai/gupax#remote-monero-nodes) changes: diff --git a/Cargo.lock b/Cargo.lock index d778f96..f6970f3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2775,7 +2775,7 @@ dependencies = [ [[package]] name = "gupax" -version = "1.3.6" +version = "1.3.7" dependencies = [ "anyhow", "arti-client", diff --git a/Cargo.toml b/Cargo.toml index 7c2a56f..4355eb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gupax" -version = "1.3.6" +version = "1.3.7" authors = ["hinto-janai "] description = "GUI for P2Pool+XMRig" documentation = "https://github.com/hinto-janai/gupax" diff --git a/src/constants.rs b/src/constants.rs index a55b47d..4c7e7eb 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -17,7 +17,7 @@ pub const GUPAX_VERSION: &str = concat!("v", env!("CARGO_PKG_VERSION")); // e.g: v1.0.0 pub const P2POOL_VERSION: &str = "v3.10"; -pub const XMRIG_VERSION: &str = "v6.21.1"; +pub const XMRIG_VERSION: &str = "v6.21.3"; pub const COMMIT: &str = env!("COMMIT"); // set in build.rs // e.g: Gupax_v1_0_0 // Would have been [Gupax_v1.0.0] but P2Pool truncates everything after [.]