This commit is contained in:
hinto.janai 2024-05-10 15:17:47 -04:00
parent 81a780e1d5
commit 9f45a3abcc
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
4 changed files with 15 additions and 3 deletions

View file

@ -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:

2
Cargo.lock generated
View file

@ -2775,7 +2775,7 @@ dependencies = [
[[package]]
name = "gupax"
version = "1.3.6"
version = "1.3.7"
dependencies = [
"anyhow",
"arti-client",

View file

@ -1,6 +1,6 @@
[package]
name = "gupax"
version = "1.3.6"
version = "1.3.7"
authors = ["hinto-janai <hinto.janai@protonmail.com>"]
description = "GUI for P2Pool+XMRig"
documentation = "https://github.com/hinto-janai/gupax"

View file

@ -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 [.]