Skip to content

Commit ecf5378

Browse files
Merge branch 'develop' into conventional-commits-hook
2 parents a0f6e18 + 6c7c89c commit ecf5378

File tree

4 files changed

+164
-48
lines changed

4 files changed

+164
-48
lines changed

.github/workflows/semver_check.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Check Semver
2+
3+
concurrency:
4+
group: ${{ github.workflow }}-${{ github.ref }}
5+
cancel-in-progress: true
6+
7+
on:
8+
pull_request:
9+
branches:
10+
- main
11+
env:
12+
CARGO_TERM_COLOR: always
13+
14+
15+
jobs:
16+
semver-checks:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: checkout
20+
uses: actions/checkout@v4
21+
- name: Check semver
22+
uses: obi1kenobi/cargo-semver-checks-action@v2

Cargo.lock

Lines changed: 127 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ edition = "2021"
1111
[dependencies]
1212
anyhow = { version = "1.0.71", optional = true }
1313
convert_case = { version = "0.6", optional = true }
14-
env_logger = { version = "0.10.0", optional = true }
14+
env_logger = { version = "0.11", optional = true }
1515
log = { version = "0.4.18", optional = true }
1616
regex = { version = "1.8.4", optional = true }
1717
serde_flat_path = { version = "0.1.2", optional = true }
1818
clap = { version = "4.3.3", features = ["derive", "cargo"], optional = true }
1919
serde = { version = "1.0.164", features = ["derive"], optional = true }
2020
ureq = { version = "2.6", features = ["json"], optional = true }
21-
strum = { version = "0.25", features = ["derive"] }
21+
strum = { version = "0.26", features = ["derive"] }
2222

2323
[[bin]]
2424
name = "cargo-leet"

0 commit comments

Comments
 (0)