Skip to content

Commit

Permalink
Merge branch 'main' into bengt/fix-build-network-2
Browse files Browse the repository at this point in the history
  • Loading branch information
bengtlofgren authored Jun 28, 2023
2 parents 2f784b5 + fdeaf23 commit 4a4d365
Show file tree
Hide file tree
Showing 30 changed files with 260 additions and 135 deletions.
2 changes: 2 additions & 0 deletions .changelog/v0.17.5/improvements/1619-masp-checked.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Check MASP parameters are correct in the ledger node.
([#1619](https://github.com/anoma/namada/pull/1619))
2 changes: 2 additions & 0 deletions .changelog/v0.17.5/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Namada 0.17.5 is a maintenance release chiefly addressing MASP
parameter validation.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test-bridge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ jobs:
- name: Build
run: make build-release${{ matrix.make.suffix }}
env:
RUSTFLAGS: "-C linker=clang -C link-arg=-fuse-ld=/usr/local/bin/mold"
RUSTFLAGS: "-C linker=clang -C debug_assertions=true -C link-arg=-fuse-ld=/usr/local/bin/mold"
- name: Upload target binaries
uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ jobs:
- name: Build
run: make build-release${{ matrix.make.suffix }}
env:
RUSTFLAGS: "-C linker=clang -C link-arg=-fuse-ld=/usr/local/bin/mold"
RUSTFLAGS: "-C linker=clang -C debug_assertions=true -C link-arg=-fuse-ld=/usr/local/bin/mold"
- name: Upload target binaries
uses: actions/upload-artifact@v3
with:
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# CHANGELOG

## v0.17.5

Namada 0.17.5 is a maintenance release chiefly addressing MASP
parameter validation.

### IMPROVEMENTS

- Check MASP parameters are correct in the ledger node.
([#1619](https://github.com/anoma/namada/pull/1619))

## v0.17.4

Namada 0.17.4 is a minor release improving the codebase by bumping the rust toolchain.
Expand Down
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ keywords = ["blockchain", "privacy", "crypto", "protocol", "network"]
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/anoma/namada"
version = "0.17.4"
version = "0.17.5"

[workspace.dependencies]
ark-bls12-381 = {version = "0.3"}
Expand Down
4 changes: 2 additions & 2 deletions docker/namada/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN make build-release
FROM golang:1.18.0 as tendermint-builder
WORKDIR /app

RUN git clone -b v0.1.4-abciplus --single-branch https://github.com/heliaxdev/tendermint.git && cd tendermint && make build
RUN git clone -b v0.37.2 --single-branch https://github.com/cometbft/cometbft.git && cd cometbft && make build

FROM debian:bullseye-slim AS runtime
ENV NAMADA_BASE_DIR=/.namada
Expand All @@ -41,7 +41,7 @@ COPY --from=builder --chmod=0755 /app/target/release/namada /usr/local/bin
COPY --from=builder --chmod=0755 /app/target/release/namadan /usr/local/bin
COPY --from=builder --chmod=0755 /app/target/release/namadaw /usr/local/bin
COPY --from=builder --chmod=0755 /app/target/release/namadac /usr/local/bin
COPY --from=tendermint-builder --chmod=0755 /app/tendermint/build/tendermint /usr/local/bin
COPY --from=tendermint-builder --chmod=0755 /app/cometbft/build/cometbft /usr/local/bin

EXPOSE 26656
EXPOSE 26660
Expand Down
1 change: 0 additions & 1 deletion scripts/build_network.sh
Original file line number Diff line number Diff line change
Expand Up @@ -217,5 +217,4 @@ main() {
package "$@"
}


main "$@"
2 changes: 1 addition & 1 deletion shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ wasmer-engine-universal = {version = "=2.2.0", optional = true}
wasmer-vm = {version = "2.2.0", optional = true}
wasmparser.workspace = true
masp_primitives.workspace = true
masp_proofs.workspace = true
masp_proofs = { workspace = true, features = ["download-params"] }
rand = {version = "0.8", default-features = false, optional = true}
rand_core = {version = "0.6", default-features = false, optional = true}
zeroize.workspace = true
Expand Down
Loading

0 comments on commit 4a4d365

Please sign in to comment.