Skip to content

Commit 1751e27

Browse files
authored
Release modeling-cmds 0.2.118 (#878)
* Release modeling-cmds 0.2.118 * fixups Signed-off-by: Jess Frazelle <[email protected]> --------- Signed-off-by: Jess Frazelle <[email protected]>
1 parent d32d2f5 commit 1751e27

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

justfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ check-typos:
1313
codespell --config .codespellrc
1414

1515
test:
16-
cargo nextest run --all-features
16+
cargo nextest run --all-features
1717
cargo test --doc
1818

1919
# Run unit tests, output coverage to `lcov.info`.
@@ -24,14 +24,14 @@ test-with-coverage:
2424
flamegraph:
2525
cargo flamegraph -p {{macros-impl}} --root --bench my_benchmark
2626
bench:
27-
cargo criterion -p {{macros-impl}} --bench my_benchmark
27+
cargo criterion -p {{macros-impl}} --bench my_benchmark
2828

2929
# e.g. `just start-release modeling-cmds`
3030
# Opens a release PR for a package in this workspace
3131
start-release pkg bump='patch':
3232
#!/usr/bin/env bash
3333
set -euxo pipefail
34-
34+
3535
# Validate that the argument is a valid project in this repo.
3636
ls {{pkg}} || { echo "No such package {{pkg}} in this Cargo workspace"; exit 2; }
3737

@@ -45,10 +45,10 @@ start-release pkg bump='patch':
4545
git add --all
4646
git commit -m "Release {{pkg}} $next_version"
4747
git push --set-upstream origin release/{{pkg}}/$next_version
48-
48+
4949
# e.g. `just finish-release modeling-cmds`
5050
# Assumes you just merged the PR from the `start-release` recipe.
51-
# Publishes the release for a package in this workspace,
51+
# Publishes the release for a package in this workspace,
5252
finish-release pkg:
5353
#!/usr/bin/env bash
5454
set -euxo pipefail
@@ -64,6 +64,6 @@ finish-release pkg:
6464
echo "$latest_commit_msg" | grep "Release {{pkg}} $version" || { echo "The latest commit on `main` is not a release commit. Did you open a PR with just start-release? Did you merge it?"; exit 2; }
6565

6666
# If so, then tag and publish.
67-
git tag kittycad-{{pkg}}-$version
67+
git tag kittycad-{{pkg}}-$version -m "kittycad-{{pkg}}-$version"
6868
git push --tags
6969
cargo publish -p kittycad-{{pkg}}

modeling-cmds/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kittycad-modeling-cmds"
3-
version = "0.2.117"
3+
version = "0.2.118"
44
edition = "2021"
55
authors = ["KittyCAD, Inc."]
66
description = "Commands in the KittyCAD Modeling API"

0 commit comments

Comments
 (0)