-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #517 from dashpay/release_0.8.0: Release Tenderdas…
…h v0.8.0 chore(release): update changelog and bump version to 0.8.0
- Loading branch information
Showing
1,054 changed files
with
94,050 additions
and
67,696 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ test/e2e/networks | |
test/logs | ||
test/p2p/data | ||
third_party/bls-signatures/build | ||
*.log |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
--- | ||
name: BLS | ||
description: Build and install BLS library. Assumes the caller did actions/setup-go and actions-checkout. | ||
inputs: | ||
arch: | ||
description: "Target architecture, one of: amd64 arm" | ||
default: amd64 | ||
required: false | ||
outputs: | ||
bls_cache_key: | ||
description: Key used by BLS cache | ||
value: ${{ runner.os }}-${{ inputs.arch }}-bls-${{ steps.bls-revision.outputs.hash }} | ||
runs: | ||
using: composite | ||
steps: | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.17" | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- name: Get BLS library revision | ||
id: bls-revision | ||
run: | | ||
echo "::set-output name=hash::$(git --git-dir=third_party/bls-signatures/src/.git rev-parse HEAD)" | ||
shell: bash | ||
- uses: actions/cache@v2 | ||
id: bls-cache | ||
with: | ||
path: ~/bls-cache | ||
key: ${{ runner.os }}-${{ inputs.arch }}-bls-${{ steps.bls-revision.outputs.hash }} | ||
- name: Build BLS library | ||
run: make install-bls | ||
if: steps.bls-cache.outputs.cache-hit != 'true' | ||
shell: bash | ||
- name: Save BLS library | ||
run: | | ||
mkdir -p ~/bls-cache/include | ||
cp -vr /usr/local/include/chiabls ~/bls-cache/include | ||
cp -vr /usr/local/include/relic* ~/bls-cache/include | ||
cp -v /usr/local/lib/libchiabls.a ~/bls-cache/ | ||
if: steps.bls-cache.outputs.cache-hit != 'true' | ||
shell: bash | ||
- uses: actions/[email protected] | ||
with: | ||
path: ~/bls-cache | ||
key: ${{ runner.os }}-${{ inputs.arch }}-bls-${{ steps.bls-revision.outputs.hash }} | ||
if: steps.bls-cache.outputs.cache-hit != 'true' | ||
- name: Install BLS library | ||
run: | | ||
sudo cp -vr ~/bls-cache/include/* /usr/local/include/ | ||
sudo cp -vr ~/bls-cache/libchiabls.a /usr/local/lib/ | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
pullRequestOpened: | | ||
:wave: Thanks for creating a PR! | ||
:wave: Thanks for creating a PR! | ||
Before we can merge this PR, please make sure that all the following items have been | ||
Before we can merge this PR, please make sure that all the following items have been | ||
checked off. If any of the checklist items are not applicable, please leave them but | ||
write a little note why. | ||
write a little note why. | ||
- [ ] Wrote tests | ||
- [ ] Updated CHANGELOG_PENDING.md | ||
- [ ] Linked to Github issue with discussion and accepted design OR link to spec that describes this work. | ||
- [ ] Updated relevant documentation (`docs/`) and code comments | ||
- [ ] Re-reviewed `Files changed` in the Github PR explorer | ||
- [ ] Applied Appropriate Labels | ||
- [ ] Wrote tests | ||
- [ ] Updated CHANGELOG_PENDING.md | ||
- [ ] Linked to Github issue with discussion and accepted design OR link to spec that describes this work. | ||
- [ ] Updated relevant documentation (`docs/`) and code comments | ||
- [ ] Re-reviewed `Files changed` in the Github PR explorer | ||
- [ ] Applied Appropriate Labels | ||
Thank you for your contribution to Tendermint! :rocket: | ||
Thank you for your contribution to Tendermint! :rocket: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
default: true, | ||
MD007: {"indent": 4} | ||
MD013: false | ||
MD024: {siblings_only: true} | ||
MD025: false | ||
MD033: {no-inline-html: false} | ||
no-hard-tabs: false | ||
whitespace: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
# Default rules for YAML linting from super-linter. | ||
# See: See https://yamllint.readthedocs.io/en/stable/rules.html | ||
extends: default | ||
rules: | ||
document-end: disable | ||
document-start: disable | ||
line-length: disable | ||
truthy: disable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
queue_rules: | ||
- name: default | ||
conditions: | ||
- base=v0.8-dev | ||
- label=S:automerge | ||
|
||
pull_request_rules: | ||
- name: Automerge to v0.8-dev | ||
conditions: | ||
- base=v0.8-dev | ||
- label=S:automerge | ||
actions: | ||
queue: | ||
method: squash | ||
name: default | ||
commit_message_template: | | ||
{{ title }} (#{{ number }}) | ||
{{ body }} |
Oops, something went wrong.