Skip to content

Commit 18c61a5

Browse files
v3.0.0 (#3464)
## Issue Addressed NA ## Proposed Changes Bump versions to v3.0.0 ## Additional Info - ~~Blocked on #3439~~ - ~~Blocked on #3459~~ - ~~Blocked on #3463~~ - ~~Blocked on #3462~~ - ~~Requires further testing~~ Co-authored-by: Michael Sproul <[email protected]>
1 parent 9311538 commit 18c61a5

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

.github/workflows/test-suite.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,8 +337,10 @@ jobs:
337337
- uses: actions/checkout@v1
338338
- name: Install Rust (${{ env.PINNED_NIGHTLY }})
339339
run: rustup toolchain install $PINNED_NIGHTLY
340+
# NOTE: cargo-udeps version is pinned until this issue is resolved:
341+
# https://github.com/est31/cargo-udeps/issues/135
340342
- name: Install cargo-udeps
341-
run: cargo install cargo-udeps --locked
343+
run: cargo install cargo-udeps --locked --force --version 0.1.30
342344
- name: Create Cargo config dir
343345
run: mkdir -p .cargo
344346
- name: Install custom Cargo config

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.5.1"
3+
version = "3.0.0"
44
authors = ["Paul Hauner <[email protected]>", "Age Manning <[email protected]"]
55
edition = "2021"
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.5.1"
3+
version = "3.0.0"
44
authors = ["Sigma Prime <[email protected]>"]
55
edition = "2021"
66

common/lighthouse_version/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ pub const VERSION: &str = git_version!(
1717
// NOTE: using --match instead of --exclude for compatibility with old Git
1818
"--match=thiswillnevermatchlol"
1919
],
20-
prefix = "Lighthouse/v2.5.1-",
21-
fallback = "Lighthouse/v2.5.1"
20+
prefix = "Lighthouse/v3.0.0-",
21+
fallback = "Lighthouse/v3.0.0"
2222
);
2323

2424
/// Returns `VERSION`, but with platform information appended to the end.

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.5.1"
4+
version = "3.0.0"
55
authors = ["Paul Hauner <[email protected]>"]
66
edition = "2021"
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.5.1"
3+
version = "3.0.0"
44
authors = ["Sigma Prime <[email protected]>"]
55
edition = "2021"
66
autotests = false

0 commit comments

Comments
 (0)