https://github.com/tendermint/tendermint
Revision 0f45086c5fd79ba47ab0270944258a27ccfc6cc3 authored by Wachiu Siu on 09 September 2022, 11:32:23 UTC, committed by GitHub on 09 September 2022, 11:32:23 UTC
* secp256k1: upgrade to latest btcec v2 and btcutil

* Update CHANGELOG_PENDING.md

Co-authored-by: Thane Thomson <connect@thanethomson.com>

* fix rebase

Co-authored-by: Thane Thomson <connect@thanethomson.com>
1 parent 5013bc3
Raw File
Tip revision: 0f45086c5fd79ba47ab0270944258a27ccfc6cc3 authored by Wachiu Siu on 09 September 2022, 11:32:23 UTC
update btcec to v2 and use the latest btcutil (#9250)
Tip revision: 0f45086
.goreleaser.yml
project_name: tendermint

env:
  # Require use of Go modules.
  - GO111MODULE=on

builds:
  - id: "tendermint"
    main: ./cmd/tendermint/main.go
    ldflags:
      - -s -w -X github.com/tendermint/tendermint/version.TMCoreSemVer={{ .Version }}
    env:
      - CGO_ENABLED=0
    goos:
      - darwin
      - linux
      - windows
    goarch:
      - amd64
      - arm
      - arm64

checksum:
  name_template: SHA256SUMS-{{.Version}}.txt
  algorithm: sha256

release:
  prerelease: auto
  name_template: "{{.Version}}"

archives:
  - files:
      - LICENSE
      - README.md
      - UPGRADING.md
      - SECURITY.md
      - CHANGELOG.md
back to top