-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): add template and sv4git config
- Loading branch information
Showing
7 changed files
with
40 additions
and
4 deletions.
There are no files selected for viewing
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,21 @@ | ||
version: "1.1" #config version | ||
|
||
tag: | ||
pattern: "v%d.%d.%d" | ||
|
||
release-notes: | ||
sections: # Array with each section of release note. Check template section for more information. | ||
- name: Features # Name used on section. | ||
section-type: commits # Type of the section, supported types: commits, breaking-changes. | ||
commit-types: [feat] # Commit types for commit section-type, one commit type cannot be in more than one section. | ||
- name: Bug Fixes | ||
section-type: commits | ||
commit-types: [fix, bug] | ||
- name: Changes | ||
section-type: commits | ||
commit-types: [chore, docs, build, refactor, docker] | ||
|
||
commit-message: | ||
|
||
issue: | ||
regex: '#[0-9]+' # Regex for issue id. |
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 @@ | ||
## {{if .Release}}{{.Release}}{{end}}{{if and (not .Date.IsZero) .Release}} ({{end}}{{timefmt .Date "2006-01-02"}}{{if and (not .Date.IsZero) .Release}}){{end}} | ||
{{- range $section := .Sections }} | ||
{{- if (eq $section.SectionType "commits") }} | ||
{{- template "rn-md-section-commits.tpl" $section }} | ||
{{- else if (eq $section.SectionType "breaking-changes")}} | ||
{{- template "rn-md-section-breaking-changes.tpl" $section }} | ||
{{- end}} | ||
{{- end}} |
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,7 @@ | ||
{{- if .}}{{- if ne .SectionName ""}} | ||
|
||
### {{.SectionName}} | ||
{{range $k,$v := .Items}} | ||
- {{if $v.Message.Scope}}**{{$v.Message.Scope}}:** {{end}}{{$v.Message.Description}} ([{{$v.Hash}}](https://github.com/waku-org/nwaku/commit/{{$v.Hash}})){{if $v.Message.Metadata.issue}} ([https://github.com/waku-org/nwaku/issues/{{$v.Message.Metadata.issue}}]({{$v.Message.Metadata.issue}})){{end}} | ||
{{- end}} | ||
{{- end}}{{- end}} |
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
Submodule nim-eth
updated
67 files
Submodule nim-secp256k1
updated
20 files
+41 −0 | .appveyor.yml | |
+1 −1 | .github/workflows/ci.yml | |
+0 −2 | .gitignore | |
+2 −2 | .gitmodules | |
+27 −0 | .travis.yml | |
+2 −0 | README.md | |
+18 −14 | ci/Jenkinsfile | |
+25 −0 | nimble.lock | |
+28 −171 | secp256k1.nim | |
+3 −4 | secp256k1.nimble | |
+24 −231 | secp256k1/abi.nim | |
+347 −0 | secp256k1_wrapper/README.md | |
+1,163 −0 | secp256k1_wrapper/ecmult_static_context.h | |
+13 −0 | secp256k1_wrapper/gen.sh | |
+118 −0 | secp256k1_wrapper/libsecp256k1-config.h | |
+1 −0 | secp256k1_wrapper/secp256k1 | |
+1 −50 | tests/test_secp256k1.nim | |
+0 −14 | tests/test_secp256k1_abi.nim | |
+0 −3 | vendor/README.md | |
+0 −1 | vendor/secp256k1 |
Submodule zerokit
updated
11 files
+235 −416 | Cargo.lock | |
+0 −11 | rln/src/ffi.rs | |
+0 −46 | rln/src/pm_tree_adapter.rs | |
+1 −118 | rln/src/public.rs | |
+0 −65 | rln/tests/ffi.rs | |
+1 −1 | utils/Cargo.toml | |
+0 −45 | utils/src/merkle_tree/full_merkle_tree.rs | |
+0 −6 | utils/src/merkle_tree/merkle_tree.rs | |
+0 −44 | utils/src/merkle_tree/optimal_merkle_tree.rs | |
+3 −2 | utils/src/pm_tree/sled_adapter.rs | |
+0 −37 | utils/tests/merkle_tree.rs |