-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ricky Saechao <[email protected]>
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 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,13 @@ | ||
# Release process for SWIFT SDK | ||
|
||
## Release | ||
1. Create a new git branch: `release/vX.Y.Z`. | ||
2. Run all tests against [hedera-local-node](https://github.com/hashgraph/hedera-local-node). Stop local-node once the tests are completed. | ||
>- `swift test` | ||
3. Change the version number in *Cargo.toml*. | ||
>- `version = major.minor.patch` | ||
>- Follows [semver 2.0](https://semver.org/spec/v2.0.0.html) | ||
6. Create a new tag. | ||
>- `git push -a <version> -m <version>` | ||
7. Once branch has been approved and merged to main, document added features pertaining to the newest release. | ||
>- [Tags and Releases for Swift SDK](https://github.com/hashgraph/hedera-sdk-swift/releases) |