forked from SiaFoundation/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
1,756 additions
and
754 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 @@ | ||
name: Prepare Release | ||
on: | ||
push: | ||
branches: [master] | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
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,27 @@ | ||
name: Release | ||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
branches: | ||
- master | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
release: | ||
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 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 |
---|---|---|
@@ -1 +1,3 @@ | ||
.vscode/settings.json | ||
|
||
.DS_Store | ||
.vscode |
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,45 @@ | ||
## 0.9.0 (2024-12-18) | ||
|
||
### Breaking Changes | ||
|
||
- Add host public key to AccountToken | ||
|
||
### Features | ||
|
||
- Add helper for generating account tokens | ||
|
||
### Fixes | ||
|
||
- Allow v1 contracts to be resolved immediately | ||
|
||
## 0.8.0 (2024-12-13) | ||
|
||
### Breaking Changes | ||
|
||
#### Add revisable to RPCLatestRevision | ||
|
||
Adds two additional flags to the RPCLatestRevision response. The `Revisable` field indicates whether the host will accept further revisions to the contract. A host will not accept revisions too close to the proof window or revisions on contracts that have already been resolved. The `Renewed` field indicates whether the contract was renewed. If the contract was renewed, the renter can use `FileContractID.V2RenewalID` to get the ID of the new contract. | ||
|
||
## 0.7.3 (2024-12-12) | ||
|
||
### Features | ||
|
||
- Update `golang.org/x/crypto` from 0.30.0 to 0.31.0 | ||
|
||
## 0.7.2 (2024-12-12) | ||
|
||
### Features | ||
|
||
#### Allow revisions to set MaxRevisionNumber | ||
|
||
`MaxRevisionNumber` was previously used to finalize contracts, but that is not the case anymore, so the restriction can be removed. | ||
|
||
### Fixes | ||
|
||
- Include storage cost in renter renewal cost | ||
|
||
## 0.7.1 (2024-12-04) | ||
|
||
### Fixes | ||
|
||
- Automate releases |
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
Oops, something went wrong.