Prepare stable release

This commit is contained in:
Shane Bammel 2024-06-05 18:11:53 -05:00
parent 311f62da37
commit c62db09e32
8 changed files with 22 additions and 20 deletions

View File

@ -2,3 +2,5 @@
# Set the number of arenas to 16 when using jemalloc. # Set the number of arenas to 16 when using jemalloc.
JEMALLOC_SYS_WITH_MALLOC_CONF = "abort_conf:true,narenas:16" JEMALLOC_SYS_WITH_MALLOC_CONF = "abort_conf:true,narenas:16"
[net]
git-fetch-with-cli = true # use the `git` executable for git operations

11
Cargo.lock generated
View File

@ -790,7 +790,7 @@ dependencies = [
[[package]] [[package]]
name = "beacon_node" name = "beacon_node"
version = "5.1.3" version = "2.5.0"
dependencies = [ dependencies = [
"beacon_chain", "beacon_chain",
"clap", "clap",
@ -1026,7 +1026,7 @@ dependencies = [
[[package]] [[package]]
name = "boot_node" name = "boot_node"
version = "5.1.3" version = "2.5.0"
dependencies = [ dependencies = [
"beacon_node", "beacon_node",
"clap", "clap",
@ -2611,6 +2611,7 @@ dependencies = [
[[package]] [[package]]
name = "ethereum_ssz" name = "ethereum_ssz"
version = "0.5.3" version = "0.5.3"
source = "git+https://gitlab.com/pulsechaincom/ethereum_ssz.git?tag=v0.5.3#bf50584d4706a019a1cf72c0059d85d0932824c0"
dependencies = [ dependencies = [
"ethereum-types 0.14.1", "ethereum-types 0.14.1",
"itertools", "itertools",
@ -2620,6 +2621,7 @@ dependencies = [
[[package]] [[package]]
name = "ethereum_ssz_derive" name = "ethereum_ssz_derive"
version = "0.5.3" version = "0.5.3"
source = "git+https://gitlab.com/pulsechaincom/ethereum_ssz.git?tag=v0.5.3#bf50584d4706a019a1cf72c0059d85d0932824c0"
dependencies = [ dependencies = [
"darling", "darling",
"proc-macro2", "proc-macro2",
@ -4284,7 +4286,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]] [[package]]
name = "lcli" name = "lcli"
version = "5.1.3" version = "2.5.0"
dependencies = [ dependencies = [
"account_utils", "account_utils",
"beacon_chain", "beacon_chain",
@ -4860,7 +4862,7 @@ dependencies = [
[[package]] [[package]]
name = "lighthouse" name = "lighthouse"
version = "5.1.3" version = "2.5.0"
dependencies = [ dependencies = [
"account_manager", "account_manager",
"account_utils", "account_utils",
@ -7806,6 +7808,7 @@ dependencies = [
[[package]] [[package]]
name = "ssz_types" name = "ssz_types"
version = "0.5.4" version = "0.5.4"
source = "git+https://gitlab.com/pulsechaincom/ssz_types.git?tag=v0.5.4#aa3dbb6adeef5c889475179d0e651cffd997c270"
dependencies = [ dependencies = [
"arbitrary", "arbitrary",
"derivative", "derivative",

View File

@ -115,8 +115,8 @@ error-chain = "0.12"
ethereum-types = "0.14" ethereum-types = "0.14"
ethereum_hashing = "1.0.0-beta.2" ethereum_hashing = "1.0.0-beta.2"
ethereum_serde_utils = "0.5.2" ethereum_serde_utils = "0.5.2"
ethereum_ssz = { path = "../ethereum_ssz/ssz" } ethereum_ssz = { git = "https://gitlab.com/pulsechaincom/ethereum_ssz.git", tag = "v0.5.3" }
ethereum_ssz_derive = { path = "../ethereum_ssz/ssz_derive" } ethereum_ssz_derive = { git = "https://gitlab.com/pulsechaincom/ethereum_ssz.git", tag = "v0.5.3" }
ethers-core = "1" ethers-core = "1"
ethers-providers = { version = "1", default-features = false } ethers-providers = { version = "1", default-features = false }
exit-future = "0.2" exit-future = "0.2"
@ -155,7 +155,7 @@ slog-term = "2"
sloggers = { version = "2", features = ["json"] } sloggers = { version = "2", features = ["json"] }
smallvec = "1.11.2" smallvec = "1.11.2"
snap = "1" snap = "1"
ssz_types = { path = "../ssz_types" } ssz_types = { git = "https://gitlab.com/pulsechaincom/ssz_types.git", tag = "v0.5.4" }
strum = { version = "0.24", features = ["derive"] } strum = { version = "0.24", features = ["derive"] }
superstruct = "0.6" superstruct = "0.6"
syn = "1" syn = "1"

View File

@ -1,10 +1,7 @@
[package] [package]
name = "beacon_node" name = "beacon_node"
version = "5.1.3" version = "2.5.0"
authors = [ authors = ["The PulseChain Team", "Paul Hauner <paul@paulhauner.com>", "Age Manning <Age@AgeManning.com"]
"Paul Hauner <paul@paulhauner.com>",
"Age Manning <Age@AgeManning.com",
]
edition = { workspace = true } edition = { workspace = true }
[lib] [lib]

View File

@ -1,7 +1,7 @@
[package] [package]
name = "boot_node" name = "boot_node"
version = "5.1.3" version = "2.5.0"
authors = ["Sigma Prime <contact@sigmaprime.io>"] authors = ["The PulseChain Team", "Sigma Prime <contact@sigmaprime.io>"]
edition = { workspace = true } edition = { workspace = true }
[dependencies] [dependencies]

View File

@ -17,8 +17,8 @@ pub const VERSION: &str = git_version!(
// NOTE: using --match instead of --exclude for compatibility with old Git // NOTE: using --match instead of --exclude for compatibility with old Git
"--match=thiswillnevermatchlol" "--match=thiswillnevermatchlol"
], ],
prefix = "Lighthouse/v5.1.3-", prefix = "Lighthouse-Pulse/v2.5.0-",
fallback = "Lighthouse/v5.1.3" fallback = "Lighthouse-Pulse/v2.5.0"
); );
/// Returns `VERSION`, but with platform information appended to the end. /// Returns `VERSION`, but with platform information appended to the end.

View File

@ -1,8 +1,8 @@
[package] [package]
name = "lcli" name = "lcli"
description = "Lighthouse CLI (modeled after zcli)" description = "Lighthouse CLI (modeled after zcli)"
version = "5.1.3" version = "2.5.0"
authors = ["Paul Hauner <paul@paulhauner.com>"] authors = ["The PulseChain Team", "Paul Hauner <paul@paulhauner.com>"]
edition = { workspace = true } edition = { workspace = true }
[features] [features]

View File

@ -1,7 +1,7 @@
[package] [package]
name = "lighthouse" name = "lighthouse"
version = "5.1.3" version = "2.5.0"
authors = ["Sigma Prime <contact@sigmaprime.io>"] authors = ["The PulseChain Team", "Sigma Prime <contact@sigmaprime.io>"]
edition = { workspace = true } edition = { workspace = true }
autotests = false autotests = false
rust-version = "1.75.0" rust-version = "1.75.0"