Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update cometbft version v0.37.5 -> v0.37.9 #4720

Merged
merged 2 commits into from
Jul 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deployments/compose/docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ services:

# The CometBFT node
cometbft-node0:
image: "docker.io/cometbft/cometbft:v0.37.5"
image: "docker.io/cometbft/cometbft:v0.37.9"
ports:
- "26656:26656"
- "26657:26657"
Expand Down
2 changes: 1 addition & 1 deletion deployments/compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ services:

# The CometBFT node
cometbft-node0:
image: "docker.io/cometbft/cometbft:v0.37.5"
image: "docker.io/cometbft/cometbft:v0.37.9"
ports:
- "26656:26656"
- "26657:26657"
Expand Down
2 changes: 1 addition & 1 deletion deployments/scripts/install-cometbft
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -euo pipefail


# Sane defaults
COMETBFT_VERSION="${COMETBFT_VERSION:-0.37.5}"
COMETBFT_VERSION="${COMETBFT_VERSION:-0.37.9}"

# Download and extract
cometbft_download_url="https://github.com/cometbft/cometbft/releases/download/v${COMETBFT_VERSION}/cometbft_${COMETBFT_VERSION}_linux_amd64.tar.gz"
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/src/cometbft_version.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.37.5
v0.37.9
7 changes: 4 additions & 3 deletions docs/guide/src/node/pd/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ There's also a one-liner install script available on the release page, which wil
### Installing CometBFT

You'll need to have [CometBFT installed](https://docs.cometbft.com/v0.37/guides/install) on your system to join your node to the testnet.
You must use a specific version of CometBFT, `{{ #include ../../cometbft_version.md }}`, which you can download
[from the CometBFT releases page](https://github.com/cometbft/cometbft/releases/tag/{{ #include ../../cometbft_version.md }}).
If you prefer to compile from source instead, make sure you are compiling version `{{ #include ../../cometbft_version.md }}`.
You must use a compatible version of CometBFT. Any version in the `v0.37.x` series will work, such as `{{ #include ../../cometbft_version.md }}`,
which you can download [from the CometBFT releases page](https://github.com/cometbft/cometbft/releases/tag/{{ #include ../../cometbft_version.md }}).
If you prefer to compile from source instead, make sure you are compiling the correct version by checking out its tag
in the CometBFT repo before building.
10 changes: 7 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,13 @@
let
# Define versions of Penumbra and CometBFT
penumbraRelease = null; # Use the local working copy
# To update the cometbft hash values, run:
# nix-prefetch-git --url https://github.com/cometbft/cometbft --rev <tag>
# and review the output.
cometBftRelease = {
version = "0.37.5";
sha256 = "sha256-wNVHsifieAtZgedavCEJLgG0kRDqUhG4Lk5ciTPoNzI=";
vendorHash = "sha256-JPEGMa0HDesEtKFvgLUP2UfTB0DlParepE2p+n06Igc=";
version = "0.37.9";
sha256 = "sha256-4LUdDlDog4kbiwyGo5fZEvtDXa6sIm+SKlSBWq1angc=";
vendorHash = "sha256-0iqI/Z8rqDyQ7JqSrsqA9kADqF6qZy8NxTDNjAYYHts=";
};

# Set up for Rust builds, pinned to the Rust toolchain version in the Penumbra repository
Expand Down Expand Up @@ -109,6 +112,7 @@
cargo-watch
cometbft
just
nix-prefetch-scripts
postgresql
protobuf
rocksdb
Expand Down
Loading