Skip to content

Commit a836e18

Browse files
committed
Release v2.1.0-rc.1 (#2921)
## Proposed Changes New release candidate to address Windows build failure for rc.0
1 parent a26b880 commit a836e18

File tree

7 files changed

+22
-9
lines changed

7 files changed

+22
-9
lines changed

.github/workflows/release.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,19 @@ jobs:
130130
profile: minimal
131131
override: true
132132

133+
# ==============================
134+
# Windows dependencies
135+
# ==============================
136+
137+
- uses: KyleMayes/install-llvm-action@v1
138+
if: startsWith(matrix.arch, 'x86_64-windows')
139+
with:
140+
version: "13.0"
141+
directory: ${{ runner.temp }}/llvm
142+
- name: Set LIBCLANG_PATH
143+
if: startsWith(matrix.arch, 'x86_64-windows')
144+
run: echo "LIBCLANG_PATH=$((gcm clang).source -replace "clang.exe")" >> $env:GITHUB_ENV
145+
133146
# ==============================
134147
# Builds
135148
# ==============================

Cargo.lock

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

beacon_node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "beacon_node"
3-
version = "2.1.0-rc.0"
3+
version = "2.1.0-rc.1"
44
authors = ["Paul Hauner <[email protected]>", "Age Manning <[email protected]"]
55
edition = "2018"
66

boot_node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "boot_node"
3-
version = "2.1.0-rc.0"
3+
version = "2.1.0-rc.1"
44
authors = ["Sigma Prime <[email protected]>"]
55
edition = "2018"
66

common/lighthouse_version/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub const VERSION: &str = git_version!(
1616
// NOTE: using --match instead of --exclude for compatibility with old Git
1717
"--match=thiswillnevermatchlol"
1818
],
19-
prefix = "Lighthouse/v2.1.0-rc.0-",
19+
prefix = "Lighthouse/v2.1.0-rc.1-",
2020
fallback = "unknown"
2121
);
2222

lcli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lcli"
33
description = "Lighthouse CLI (modeled after zcli)"
4-
version = "2.1.0-rc.0"
4+
version = "2.1.0-rc.1"
55
authors = ["Paul Hauner <[email protected]>"]
66
edition = "2018"
77

lighthouse/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lighthouse"
3-
version = "2.1.0-rc.0"
3+
version = "2.1.0-rc.1"
44
authors = ["Sigma Prime <[email protected]>"]
55
edition = "2018"
66
autotests = false

0 commit comments

Comments
 (0)