Compare commits

...

1 Commits

Author SHA1 Message Date
Michael Sproul
1aca48400c Tree states release v4.5.444-exp
- Update xdelta3 to remove dodgy build steps
- Fix asset paths for draft release
2023-10-20 14:13:58 +11:00
8 changed files with 13 additions and 13 deletions

View File

@@ -282,6 +282,6 @@ jobs:
| <img src="https://simpleicons.org/icons/docker.svg" style="width: 32px;"/> | Docker | [${{ env.VERSION }}](https://hub.docker.com/r/${{ env.IMAGE_NAME }}/tags?page=1&ordering=last_updated&name=${{ env.VERSION }}) | [${{ env.IMAGE_NAME }}](https://hub.docker.com/r/${{ env.IMAGE_NAME }}) | | <img src="https://simpleicons.org/icons/docker.svg" style="width: 32px;"/> | Docker | [${{ env.VERSION }}](https://hub.docker.com/r/${{ env.IMAGE_NAME }}/tags?page=1&ordering=last_updated&name=${{ env.VERSION }}) | [${{ env.IMAGE_NAME }}](https://hub.docker.com/r/${{ env.IMAGE_NAME }}) |
ENDBODY ENDBODY
) )
assets=(./lighthouse-*.tar.gz*) assets=(./lighthouse-*.tar.gz*/lighthouse-*.tar.gz*)
tag_name="${{ env.VERSION }}" tag_name="${{ env.VERSION }}"
echo "$body" | gh release create --draft -F "-" "$tag_name" "${assets[@]}" echo "$body" | gh release create --draft -F "-" "$tag_name" "${assets[@]}"

10
Cargo.lock generated
View File

@@ -559,7 +559,7 @@ dependencies = [
[[package]] [[package]]
name = "beacon_node" name = "beacon_node"
version = "4.5.333-exp" version = "4.5.444-exp"
dependencies = [ dependencies = [
"beacon_chain", "beacon_chain",
"clap", "clap",
@@ -782,7 +782,7 @@ dependencies = [
[[package]] [[package]]
name = "boot_node" name = "boot_node"
version = "4.5.333-exp" version = "4.5.444-exp"
dependencies = [ dependencies = [
"beacon_node", "beacon_node",
"clap", "clap",
@@ -3889,7 +3889,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]] [[package]]
name = "lcli" name = "lcli"
version = "4.5.333-exp" version = "4.5.444-exp"
dependencies = [ dependencies = [
"account_utils", "account_utils",
"beacon_chain", "beacon_chain",
@@ -4457,7 +4457,7 @@ dependencies = [
[[package]] [[package]]
name = "lighthouse" name = "lighthouse"
version = "4.5.333-exp" version = "4.5.444-exp"
dependencies = [ dependencies = [
"account_manager", "account_manager",
"account_utils", "account_utils",
@@ -9280,7 +9280,7 @@ dependencies = [
[[package]] [[package]]
name = "xdelta3" name = "xdelta3"
version = "0.1.5" version = "0.1.5"
source = "git+http://github.com/michaelsproul/xdelta3-rs?rev=d12f71b36a55b5ca0247a38151fb7c2be5c0e742#d12f71b36a55b5ca0247a38151fb7c2be5c0e742" source = "git+http://github.com/michaelsproul/xdelta3-rs?rev=ae9a1d2585ef998f4656acdc35cf263ee88e6dfa#ae9a1d2585ef998f4656acdc35cf263ee88e6dfa"
dependencies = [ dependencies = [
"bindgen 0.66.1", "bindgen 0.66.1",
"cc", "cc",

View File

@@ -168,7 +168,7 @@ url = "2"
uuid = { version = "0.8", features = ["serde", "v4"] } uuid = { version = "0.8", features = ["serde", "v4"] }
# TODO update to warp 0.3.6 after released. # TODO update to warp 0.3.6 after released.
warp = { git = "https://github.com/seanmonstar/warp.git", default-features = false, features = ["tls"] } warp = { git = "https://github.com/seanmonstar/warp.git", default-features = false, features = ["tls"] }
xdelta3 = { git = "http://github.com/michaelsproul/xdelta3-rs", rev="d12f71b36a55b5ca0247a38151fb7c2be5c0e742" } xdelta3 = { git = "http://github.com/michaelsproul/xdelta3-rs", rev="ae9a1d2585ef998f4656acdc35cf263ee88e6dfa" }
zeroize = { version = "1", features = ["zeroize_derive"] } zeroize = { version = "1", features = ["zeroize_derive"] }
zip = "0.6" zip = "0.6"
zstd = "0.11.2" zstd = "0.11.2"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "beacon_node" name = "beacon_node"
version = "4.5.333-exp" version = "4.5.444-exp"
authors = [ authors = [
"Paul Hauner <paul@paulhauner.com>", "Paul Hauner <paul@paulhauner.com>",
"Age Manning <Age@AgeManning.com", "Age Manning <Age@AgeManning.com",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "boot_node" name = "boot_node"
version = "4.5.333-exp" version = "4.5.444-exp"
authors = ["Sigma Prime <contact@sigmaprime.io>"] authors = ["Sigma Prime <contact@sigmaprime.io>"]
edition = { workspace = true } edition = { workspace = true }

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/v4.5.333-exp-", prefix = "Lighthouse/v4.5.444-exp-",
fallback = "Lighthouse/v4.5.333-exp" fallback = "Lighthouse/v4.5.444-exp"
); );
/// Returns `VERSION`, but with platform information appended to the end. /// Returns `VERSION`, but with platform information appended to the end.

View File

@@ -1,7 +1,7 @@
[package] [package]
name = "lcli" name = "lcli"
description = "Lighthouse CLI (modeled after zcli)" description = "Lighthouse CLI (modeled after zcli)"
version = "4.5.333-exp" version = "4.5.444-exp"
authors = ["Paul Hauner <paul@paulhauner.com>"] authors = ["Paul Hauner <paul@paulhauner.com>"]
edition = { workspace = true } edition = { workspace = true }

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "lighthouse" name = "lighthouse"
version = "4.5.333-exp" version = "4.5.444-exp"
authors = ["Sigma Prime <contact@sigmaprime.io>"] authors = ["Sigma Prime <contact@sigmaprime.io>"]
edition = { workspace = true } edition = { workspace = true }
autotests = false autotests = false