From 80063725801ac7d554e9d31a181d639dcaf52b1c Mon Sep 17 00:00:00 2001 From: dbr Date: Mon, 16 Jan 2023 19:45:36 +1030 Subject: [PATCH] Note on order for publishing crates --- docs/development-process.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/development-process.md b/docs/development-process.md index 3677469..eb7d4e0 100644 --- a/docs/development-process.md +++ b/docs/development-process.md @@ -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