Skip to content
This repository was archived by the owner on Dec 1, 2023. It is now read-only.

Commit 70ec135

Browse files
Update docs from transaction flow refactor (#334)
* refactor: remove unused param in execute * feat: improve error message * feat: roll-back readme * feat: update scripts * feat: update links * fix: .gitignore * feat: change max_fee and ssalt type to int (from str) * feat: update cli * feat: update docs * feat: add fee entry to docs * feat: update RELEASING * feat: move signer back * feat: add signer * Update src/nile/base_project/.gitignore Co-authored-by: Andrew Fleming <fleming.andrew@protonmail.com> * feat: apply updates from review * feat: add --alias to cli commands * fix: format string in scripts Co-authored-by: Andrew Fleming <fleming.andrew@protonmail.com>
1 parent 08fb7be commit 70ec135

17 files changed

Lines changed: 523 additions & 294 deletions

File tree

RELEASING.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,23 @@ Releasing checklist:
88

99
(3) Checkout the `main` branch. This is the only releasable branch.
1010

11-
(4) Create a tag for the release.
11+
(4) Create and push a release branch.
12+
13+
```sh
14+
git checkout -b release-v0.12.0
15+
git push release-v0.12.0
16+
```
17+
18+
(5) Create a tag for the release.
1219

1320
```sh
1421
git tag v0.12.0
1522
```
1623

17-
(5) Push the tag to the main repository, [triggering the CI and release process](https://github.com/OpenZeppelin/nile/blob/951cf2403aa58a9b58c3c1a793b51cd5c58cb56e/.github/workflows/ci.yml#L55).
24+
(6) Push the tag to the main repository, [triggering the CI and release process](https://github.com/OpenZeppelin/nile/blob/951cf2403aa58a9b58c3c1a793b51cd5c58cb56e/.github/workflows/ci.yml#L55).
1825

1926
```sh
2027
git push origin v0.12.0
2128
```
2229

23-
(6) Finally, go to the repo's [releases page](https://github.com/OpenZeppelin/nile/releases/) and [create a new one](https://github.com/OpenZeppelin/nile/releases/new) with the new tag and the `main` branch as target.
30+
(7) Finally, go to the repo's [releases page](https://github.com/OpenZeppelin/nile/releases/) and [create a new one](https://github.com/OpenZeppelin/nile/releases/new) with the new tag and the `main` branch as target.

0 commit comments

Comments
 (0)