Skip to content

Commit

Permalink
Update RELEASING.md (#1195)
Browse files Browse the repository at this point in the history
* feat: update RELEASING

* fix: linter issue
  • Loading branch information
ericnordelo authored Oct 29, 2024
1 parent 8404eb9 commit 0a63799
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,13 @@ git tag v0.8.0
git push origin v0.8.0
```

(6) Finally, go to the repo's [releases page](https://github.com/OpenZeppelin/cairo-contracts/releases/) and [create a new one](https://github.com/OpenZeppelin/cairo-contracts/releases/new) with the new tag and the base branch as target (`main` except in the event of a hotfix).
(6) After that, go to the repo's [releases page](https://github.com/OpenZeppelin/cairo-contracts/releases/) and [create a new one](https://github.com/OpenZeppelin/cairo-contracts/releases/new) with the new tag and the base branch as target (`main` except in the event of a hotfix).
Make sure to write a detailed release description and a short changelog.

(7) Finally, from the released tag, create and push a doc branch to deploy the corresponding version
to the doc-site.

```sh
git checkout -b docs-v0.8.0
git push docs-v0.8.0
```

0 comments on commit 0a63799

Please sign in to comment.