-
Notifications
You must be signed in to change notification settings - Fork 10
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 #196 from SiaFoundation/nate/update-core
Update core and coreutils
- Loading branch information
Showing
5 changed files
with
96 additions
and
3 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,26 @@ | ||
on: | ||
push: | ||
branches: [master] | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
name: Create Release PR | ||
jobs: | ||
prepare-release: | ||
if: "!contains(github.event.head_commit.message, 'chore: prepare release')" # Skip merges from releases | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
- name: Configure Git | ||
run: | | ||
git config --global user.name github-actions[bot] | ||
git config --global user.email 41898282+github-actions[bot]@users.noreply.github.com | ||
- uses: knope-dev/action@407e9ef7c272d2dd53a4e71e39a7839e29933c48 | ||
- run: knope prepare-release --verbose | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
continue-on-error: true |
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,12 @@ | ||
## 0.8.0 | ||
|
||
This is the first stable release for the walletd app -- the new reference wallet for users and exchanges | ||
|
||
### Breaking changes | ||
|
||
- SiaFund support | ||
- Ledger hardware wallet support | ||
- Multi-wallet support | ||
- Full index mode for exchanges and wallet integrators | ||
- Redesigned events list | ||
- Redesigned transaction flow |
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,55 @@ | ||
[package] | ||
changelog = "CHANGELOG.md" | ||
versioned_files = ["go.mod"] | ||
ignore_go_major_versioning = true | ||
|
||
[[workflows]] | ||
name = "document-change" | ||
|
||
[[workflows.steps]] | ||
type = "CreateChangeFile" | ||
|
||
[[workflows]] | ||
name = "prepare-release" | ||
|
||
[[workflows.steps]] | ||
type = "Command" | ||
command = "git switch -c release" | ||
|
||
[[workflows.steps]] | ||
type = "PrepareRelease" | ||
|
||
[[workflows.steps]] | ||
type = "Command" | ||
command = "git commit -m \"chore: prepare release $version\"" | ||
variables = { "$version" = "Version" } | ||
|
||
[[workflows.steps]] | ||
type = "Command" | ||
command = "git push --force --set-upstream origin release" | ||
|
||
[workflows.steps.variables] | ||
"$version" = "Version" | ||
|
||
[[workflows.steps]] | ||
type = "CreatePullRequest" | ||
base = "master" | ||
|
||
[workflows.steps.title] | ||
template = "chore: prepare release $version" | ||
variables = { "$version" = "Version" } | ||
|
||
[workflows.steps.body] | ||
template = "This PR was created automatically. Merging it will finalize the changelog for $version\n\n$changelog" | ||
variables = { "$changelog" = "ChangelogEntry", "$version" = "Version" } | ||
|
||
# Do not enable releases, just changelogs for now. | ||
# [[workflows]] | ||
# name = "release" | ||
# | ||
# [[workflows.steps]] | ||
# type = "Release" | ||
|
||
[github] | ||
owner = "SiaFoundation" | ||
repo = "walletd" |