- In
def_enum.rs
, under themod each_cmd
, add your newstruct MyNewCommand
with one field for each parameter the command has. - In
ok_response.rs
add the response struct, in thedefine_ok_modeling_cmd_response_enum!
macro.- If your command doesn't respond with any data, create a struct with no fields.
This repo uses a justfile
. Be sure to install just
if you haven't already.
- Create a release branch:
just start-release modeling-cmds
. - Open a PR (hint:
just start-release
output should include a link to GitHub which will open a release PR). - Merge the PR
- Check out latest main, then run
just finish-release modeling-cmds
.
The just
scripts above accept any workspace member as their first argument. For example, you could replace modeling-cmds
with modeling-cmds-macros
there.
The just
scripts also accept a second arg, which defaults to patch
-- this is the kind of semver bump to make. Technically you can specify minor
or major
too, but you should almost always just bump the patch e.g. go from 0.1.22 to 0.1.23. We don't really care about semver accuracy as Zoo engineers are the only people using this crate currently. Once other users need these crates, we'll start enforcing semver -- until then, convenience is really what matters. If you ever bump modeling-cmds
major/minor versions, you'll need to open PRs to KittyCAD's format and engine repos to explicitly bump them to 0.2. Talk to Adam Chalmers before bumping the minor or major version.