Skip to content

Commit

Permalink
Update the release notes to work for current releases (#1842)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsdw authored Oct 25, 2024
1 parent 9640ecc commit ff2196d
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,23 @@ We also assume that ongoing work done is being merged directly to the `master` b

```
(cd metadata && cargo publish) && \
(cd lightclient && cargo publish) && \
(cd codegen && cargo publish) && \
(cd macro && cargo publish) && \
(cd subxt && cargo publish) && \
(cd signer && cargo publish) && \
(cd cli && cargo publish);
(cd lightclient && cargo publish) && \
(cd utils/fetch-metadata && cargo publish) && \
(cd codegen && cargo publish) && \
(cd macro && cargo publish);
```

Now, remove the dev dependencies from `subxt-core` (to avoid circular deps), and then run:

```
(cd core && cargo publish) && \
(cd subxt && cargo publish) && \
(cd signer && cargo publish) && \
(cd cli && cargo publish);
```

Finally, put back the dev dependencies in `subxt-core`.

11. If the release was successful, tag the commit that we released in the `master` branch with the
version that we just released, for example:

Expand Down

0 comments on commit ff2196d

Please sign in to comment.