From f07360657963dcc1b92bc359c88cd06711ebf3e7 Mon Sep 17 00:00:00 2001 From: Adam Chalmers Date: Mon, 11 Dec 2023 14:09:13 -0600 Subject: [PATCH] Check semver action (#15) --- .github/workflows/ci.yml | 8 ++++++++ Cargo.lock | 2 +- modeling-cmds/Cargo.toml | 2 +- unit-conversion-derive/Cargo.toml | 1 + 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4caddb50..2e2eba8f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,3 +89,11 @@ jobs: - name: Run codespell # Edit this file to tweak the typo list and other configuration. run: codespell --config .codespellrc + + semver-checks: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - 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" diff --git a/unit-conversion-derive/Cargo.toml b/unit-conversion-derive/Cargo.toml index 64d0443a..50769e1a 100644 --- a/unit-conversion-derive/Cargo.toml +++ b/unit-conversion-derive/Cargo.toml @@ -6,6 +6,7 @@ authors = ["Jess Frazelle "] edition = "2018" repository = "https://github.com/KittyCAD/modeling-api" keywords = ["kittycad"] +license = "MIT" [lib] proc-macro = true