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

Update docs from transaction flow refactor #334

Merged
merged 19 commits into from
Jan 9, 2023
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,23 @@ Releasing checklist:

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

(4) Create a tag for the release.
(4) Create and push a release branch.

```sh
git checkout -b release-v0.12.0
git push release-v0.12.0
```
ericnordelo marked this conversation as resolved.
Show resolved Hide resolved

(5) Create a tag for the release.

```sh
git tag v0.12.0
```

(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).
(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).

```sh
git push origin v0.12.0
```

(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.
(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.
Loading