Skip to content

Commit c2babe1

Browse files
committed
temporarily revert to windows 2019 build envitonment because of 2022 env compiler bug
1 parent fe1b50e commit c2babe1

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ If applicable, add screenshots to help explain your problem.
2525

2626
**Desktop (please complete the following information):**
2727
- OS: [e.g. iOS]
28-
- Version of Grin-gui [e.g. v0.1.0-alpha.3 or a commit hash of the build]
28+
- Version of Grin-gui [e.g. v0.1.0-alpha.4 or a commit hash of the build]
2929

3030

3131
**Additional context**

.github/workflows/cd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
5151
windows-release:
5252
name: Windows Release
53-
runs-on: windows-latest
53+
runs-on: windows-2019
5454
steps:
5555
- name: Checkout
5656
uses: actions/checkout@v3

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
windows-tests:
2727
name: Windows Tests
28-
runs-on: windows-latest
28+
runs-on: windows-2019
2929
steps:
3030
- name: Checkout
3131
uses: actions/checkout@v3

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin-gui"
3-
version = "0.1.0-alpha.3"
3+
version = "0.1.0-alpha.4"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "GUI wrapping grin and grin-wallet. Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -16,8 +16,8 @@ no-self-update = ["grin-gui-core/no-self-update"]
1616
debug = ["iced/debug"]
1717

1818
[dependencies]
19-
grin-gui-core = { version = "0.1.0-alpha.3", path = "crates/core", features = ["wgpu"]}
20-
grin-gui-widgets = { version = "0.1.0-alpha.3", path = "crates/widgets" }
19+
grin-gui-core = { version = "0.1.0-alpha.4", path = "crates/core", features = ["wgpu"]}
20+
grin-gui-widgets = { version = "0.1.0-alpha.4", path = "crates/widgets" }
2121

2222
iced = { version = "0.10", features = ["canvas", "tokio"] }
2323
iced_futures = { version = "0.7", features = ["async-std"] }

crates/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "grin-gui-core"
33
description = "Core GUI library for Grin GUI"
4-
version = "0.1.0-alpha.3"
4+
version = "0.1.0-alpha.4"
55
authors = ["Yeastplume", "Casper Rogild Storm"]
66
license = "GPL-3.0"
77
homepage = "https://github.com/mimblewimble/grin-gui"

crates/widgets/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "grin-gui-widgets"
33
description = "Widget library for Grin Core GUI"
4-
version = "0.1.0-alpha.3"
4+
version = "0.1.0-alpha.4"
55
authors = ["Yeastplume", "Casper Rogild Storm", "tarkah <admin@tarkah.dev>"]
66
license = "GPL-3.0"
77
homepage = "https://github.com/mimblewimble/grin-gui"

0 commit comments

Comments
 (0)