-
Notifications
You must be signed in to change notification settings - Fork 1
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
7 changed files
with
52 additions
and
23 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
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,21 @@ | ||
## Release Process | ||
|
||
### Instructions | ||
|
||
Requires `Bash`, [sfreleaser](https://github.com/streamingfast/sfreleaser) and [sd](https://github.com/chmln/sd): | ||
|
||
```bash | ||
# *Important* Do not forget to replace `0.10.2` below by your real version! | ||
export version="0.10.2" | ||
|
||
sd '^version = ".*?"$' "version = \"${version}\"" Cargo.toml | ||
sd 'version = ".*?",' "version = \"${version}\"," Cargo.toml | ||
sd '## Unreleased' "## ${version}" CHANGELOG.md | ||
|
||
# Important so that Cargo.lock is updated and you "test | ||
cargo test --target aarch64-apple-darwin # Change 'aarch64-apple-darwin' to fit your own platform! | ||
|
||
git add -A . && git commit -m "Preparing release of ${version}" | ||
|
||
sfreleaser release "v${version}" | ||
``` |
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
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 @@ | ||
pub use substreams_near_core::{block_view, pb}; | ||
pub use substreams_near_core::{block_view, pb}; |