Release v0.3.4 (#1894)

## Proposed Changes

Bump version to v0.3.4 and update dependencies with `cargo update`.


Co-authored-by: Michael Sproul <michael@sigmaprime.io>
This commit is contained in:
Michael Sproul 2020-11-13 06:06:35 +00:00
parent c00e6c2c6f
commit 46a06069c6
10 changed files with 189 additions and 161 deletions

332
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
FROM rust:1.45.1 AS builder FROM rust:1.47.0 AS builder
RUN apt-get update && apt-get install -y cmake RUN apt-get update && apt-get install -y cmake
COPY . lighthouse COPY . lighthouse
ARG PORTABLE ARG PORTABLE

View File

@ -1,6 +1,6 @@
[package] [package]
name = "account_manager" name = "account_manager"
version = "0.3.3" version = "0.3.4"
authors = ["Paul Hauner <paul@paulhauner.com>", "Luke Anderson <luke@sigmaprime.io>"] authors = ["Paul Hauner <paul@paulhauner.com>", "Luke Anderson <luke@sigmaprime.io>"]
edition = "2018" edition = "2018"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "beacon_node" name = "beacon_node"
version = "0.3.3" version = "0.3.4"
authors = ["Paul Hauner <paul@paulhauner.com>", "Age Manning <Age@AgeManning.com"] authors = ["Paul Hauner <paul@paulhauner.com>", "Age Manning <Age@AgeManning.com"]
edition = "2018" edition = "2018"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "boot_node" name = "boot_node"
version = "0.3.3" version = "0.3.4"
authors = ["Sigma Prime <contact@sigmaprime.io>"] authors = ["Sigma Prime <contact@sigmaprime.io>"]
edition = "2018" edition = "2018"

View File

@ -10,7 +10,7 @@ use target_info::Target;
/// `Lighthouse/v0.2.0-1419501f2+` /// `Lighthouse/v0.2.0-1419501f2+`
pub const VERSION: &str = git_version!( pub const VERSION: &str = git_version!(
args = ["--always", "--dirty=+"], args = ["--always", "--dirty=+"],
prefix = "Lighthouse/v0.3.3-", prefix = "Lighthouse/v0.3.4-",
fallback = "unknown" fallback = "unknown"
); );

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 = "0.3.3" version = "0.3.4"
authors = ["Paul Hauner <paul@paulhauner.com>"] authors = ["Paul Hauner <paul@paulhauner.com>"]
edition = "2018" edition = "2018"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "lighthouse" name = "lighthouse"
version = "0.3.3" version = "0.3.4"
authors = ["Sigma Prime <contact@sigmaprime.io>"] authors = ["Sigma Prime <contact@sigmaprime.io>"]
edition = "2018" edition = "2018"

View File

@ -1,3 +1,5 @@
#!/usr/bin/env bash
# Change the version across multiple files, prior to a release. Use `sed` to # Change the version across multiple files, prior to a release. Use `sed` to
# find/replace the exiting version with the new one. # find/replace the exiting version with the new one.
# #

View File

@ -1,6 +1,6 @@
[package] [package]
name = "validator_client" name = "validator_client"
version = "0.3.3" version = "0.3.4"
authors = ["Paul Hauner <paul@paulhauner.com>", "Age Manning <Age@AgeManning.com>", "Luke Anderson <luke@lukeanderson.com.au>"] authors = ["Paul Hauner <paul@paulhauner.com>", "Age Manning <Age@AgeManning.com>", "Luke Anderson <luke@lukeanderson.com.au>"]
edition = "2018" edition = "2018"