Skip to content

Commit 3e585d6

Browse files
committed
release: version v2.5.0
1 parent 08e9474 commit 3e585d6

6 files changed

Lines changed: 26 additions & 14 deletions

File tree

.config/cliff.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ commit_preprocessors = [
5555
commit_parsers = [
5656
{ message = "^feat", group = "<!-- 0 -->🚀 Features" },
5757
{ message = "^fix", group = "<!-- 1 -->🐛 Bug Fixes" },
58-
{ message = "^k8s", group = "<!-- 4 -->☸️ Kubernetes" }
58+
{ message = "^k8s", group = "<!-- 4 -->☸️ Kubernetes" },
59+
{ message = "^deprecation", group = "<!-- 2 -->🪦 Deprecations" },
5960
]
6061
# filter out the commits that are not matched by commit parsers
6162
filter_commits = true

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44

55
Breaking changes are annotated with the ⚠️ symbol.
6+
## 2.5.0 - 2026-04-15
7+
8+
### 🚀 Features
9+
10+
- SKEL scripting language support: `remove` and `modify` commands for transforming trace files
11+
- Internal metrics store, progress bars, and emojis for the CLI
12+
13+
### 🪦 Deprecations
14+
15+
- `skctl validate --fix` is no longer supported for modifying trace files; use SKEL instead;
16+
`skctl validate --generate-skel` will emit a SKEL script to fix validation errors
617

718
## 2.4.4 - 2026-01-29
819

Cargo.lock

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

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ members = [
1313
]
1414

1515
[workspace.package]
16-
version = "2.4.4"
16+
version = "2.5.0"
1717
authors = ["Applied Computing Research Labs"]
1818
documentation = "https://simkube.dev/documentation/"
1919
license-file = "LICENSE"
@@ -22,9 +22,9 @@ edition = "2024"
2222
rust-version = "1.93"
2323

2424
[workspace.dependencies]
25-
sk-api = { version = "2.4.4", path = "sk-api" }
26-
sk-core = { version = "2.4.4", path = "sk-core" }
27-
sk-store = { version = "2.4.4", path = "sk-store" }
25+
sk-api = { version = "2.5.0", path = "sk-api" }
26+
sk-core = { version = "2.5.0", path = "sk-core" }
27+
sk-store = { version = "2.5.0", path = "sk-store" }
2828

2929
anyhow = { version = "1.0.98", features = ["backtrace"] }
3030
assertables = "9.8.0"

k8s/kustomize/prod/sk-tracer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ spec:
7878
value: "1"
7979
- name: POD_OWNER
8080
value: sk-tracer-depl
81-
image: quay.io/appliedcomputing/sk-tracer:v2.4.4
81+
image: quay.io/appliedcomputing/sk-tracer:v2.5.0
8282
name: sk-tracer
8383
ports:
8484
- containerPort: 7777

k8s/kustomize/sim/sk-ctrl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ spec:
5353
fieldPath: metadata.namespace
5454
- name: POD_OWNER
5555
value: sk-ctrl-depl
56-
image: quay.io/appliedcomputing/sk-ctrl:v2.4.4
56+
image: quay.io/appliedcomputing/sk-ctrl:v2.5.0
5757
name: sk-ctrl
5858
nodeSelector:
5959
type: kind-worker

0 commit comments

Comments
 (0)