From 8a32c3ec7c5c15880e1ddcbfa91b5eefc1d9360a Mon Sep 17 00:00:00 2001 From: Adam Chalmers Date: Mon, 11 Dec 2023 13:58:37 -0600 Subject: [PATCH] Check semver action --- .github/workflows/ci.yml | 7 +++++++ Cargo.lock | 2 +- modeling-cmds/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4caddb50..98a69903 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,3 +89,10 @@ jobs: - name: Run codespell # Edit this file to tweak the typo list and other configuration. run: codespell --config .codespellrc + + check-semver: + name: Check semver + runs-on: ubuntu-latest + steps: + - name: Check semver + uses: obi1kenobi/cargo-semver-checks-action@v2 diff --git a/Cargo.lock b/Cargo.lock index 924c894b..05f5ea5f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -336,7 +336,7 @@ dependencies = [ [[package]] name = "kittycad-modeling-cmds" -version = "0.1.1" +version = "0.1.2" dependencies = [ "chrono", "cxx", diff --git a/modeling-cmds/Cargo.toml b/modeling-cmds/Cargo.toml index 7dccb9d4..92f79f67 100644 --- a/modeling-cmds/Cargo.toml +++ b/modeling-cmds/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kittycad-modeling-cmds" -version = "0.1.1" +version = "0.1.2" edition = "2021" authors = ["KittyCAD, Inc."] description = "Commands in the KittyCAD Modeling API"