mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-03 11:45:18 +00:00
This is by no means a signal that we offer any additional guarantees with our software. This warning seems somewhat pointless given that:
1. Our open source license clearly states that we offer no warranties with this software.
2. We are clearly still pre-1.0.
It also doesn't make sense to append "(WARNING: BETA SOFTWARE)" to pre-releases such as alpha releases, which are to be considered _more_ unstable than beta releases.
---
#### PR checklist
- [x] Tests written/updated, or no tests needed
- [x] `CHANGELOG_PENDING.md` updated, or no changelog entry needed
- [x] Updated relevant documentation (`docs/`) and code comments, or no
documentation updates needed
38 lines
638 B
YAML
38 lines
638 B
YAML
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
|