From 0a63799174b2c3df429bba20e675bef498535277 Mon Sep 17 00:00:00 2001 From: Eric Nordelo Date: Tue, 29 Oct 2024 16:58:15 +0100 Subject: [PATCH] Update RELEASING.md (#1195) * feat: update RELEASING * fix: linter issue --- RELEASING.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/RELEASING.md b/RELEASING.md index 2a3540cb7..d952a7426 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -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 +```