Skip to content

Commit 86292ce

Browse files
committed
Add instructions on how to release a new version
1 parent 0bb4f47 commit 86292ce

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,16 @@ Functionality constraints:
99
- the in progress rendezvous do not need to be persisted between server restarts
1010
- the server does not need to work in a clustered/sharded deployment
1111
- no authentication is needed for use of the server
12+
13+
### Releasing
14+
15+
```sh
16+
git checkout main
17+
cargo set-version --workspace --bump patch
18+
cd synapse/
19+
poetry version patch
20+
cd ..
21+
git commit -m "vX.Y.Z"
22+
git tag vX.Y.Z
23+
git push
24+
git push --tags

0 commit comments

Comments
 (0)