Skip to content

Commit

Permalink
Merge pull request #517 from dashpay/release_0.8.0: Release Tenderdas…
Browse files Browse the repository at this point in the history
…h v0.8.0

chore(release): update changelog and bump version to 0.8.0
  • Loading branch information
lklimek authored Dec 7, 2022
2 parents 9f0f8f0 + a1fe5bb commit a94d6ba
Show file tree
Hide file tree
Showing 1,054 changed files with 94,050 additions and 67,696 deletions.
168 changes: 0 additions & 168 deletions .circleci/config.yml

This file was deleted.

1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ test/e2e/networks
test/logs
test/p2p/data
third_party/bls-signatures/build
*.log
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
# global owners are only requested if there isn't a more specific
# codeowner specified below. For this reason, the global codeowners
# are often repeated in package-level definitions.
* @quantumexplorer
* @quantumexplorer @lklimek @shotonoff
53 changes: 53 additions & 0 deletions .github/actions/bls/action.yml
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/cache@v2.1.2
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
20 changes: 10 additions & 10 deletions .github/auto-comment.yml
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:
20 changes: 9 additions & 11 deletions codecov.yml → .github/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,24 @@ coverage:
precision: 2
round: down
range: "70...100"
github_checks:
annotations: false

status:
project:
default:
threshold: 1%
patch: on
threshold: 20%
patch: off
changes: off

comment:
layout: "diff, files"
behavior: default
require_changes: no
require_base: no
require_head: yes
github_checks:
annotations: false

comment: false

ignore:
- "docs"
- "DOCKER"
- "scripts"
- "**/*.pb.go"
- "libs/pubsub/query/query.peg.go"
- "*.md"
- "*.rst"
- "*.yml"
17 changes: 9 additions & 8 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
version: 2
updates:
- package-ecosystem: github-actions
Expand All @@ -6,14 +7,14 @@ updates:
interval: daily
time: "11:00"
open-pull-requests-limit: 10
# - package-ecosystem: npm
# directory: "/docs"
# schedule:
# interval: daily
# time: "11:00"
# open-pull-requests-limit: 10
# reviewers:
# - fadeev
# - package-ecosystem: npm
# directory: "/docs"
# schedule:
# interval: daily
# time: "11:00"
# open-pull-requests-limit: 10
# reviewers:
# - fadeev
- package-ecosystem: gomod
directory: "/"
schedule:
Expand Down
8 changes: 8 additions & 0 deletions .github/linters/markdownlint.yml
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
9 changes: 9 additions & 0 deletions .github/linters/yaml-lint.yml
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
19 changes: 19 additions & 0 deletions .github/mergify.yml
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 }}
Loading

0 comments on commit a94d6ba

Please sign in to comment.