Note on order for publishing crates

This commit is contained in:
dbr 2023-01-16 19:45:36 +10:30
parent 7419057bda
commit 8006372580

View File

@ -22,6 +22,14 @@ When it is time to make a new release, we create a `x.y-stable` branch (e.g `0.9
3. Bump `version` in the various `Cargo.toml`
4. A stable branch is created, e.g `git switch -c 0.9-stable` and pushed to Github
5. Publish various crates (noting it has to be done starting with `imgui-sys`, then `imgui`, then the others)
```
cargo publish -p imgui-sys
cargo publish -p imgui
cargo publish -p imgui-winit-support --no-verify
cargo publish -p imgui-glium-renderer
cargo publish -p imgui-glow-renderer
cargo publish -p imgui-sdl2-support
```
6. Create annotated tag `v0.9.0` and push to github
7. Create Release for this version on Github
8. Update and close any relevant tickets