Compare commits

...

2 Commits

Author SHA1 Message Date
bahdotsh
1cc3bf98b6 feat: bump version to 0.5.0 for podman support 2025-08-09 15:24:49 +05:30
Gokul
af8ac002e4 Merge pull request #28 from bahdotsh/podman
feat: Add comprehensive Podman container runtime support
2025-08-09 15:11:58 +05:30
2 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ members = [
resolver = "2"
[workspace.package]
version = "0.4.0"
version = "0.5.0"
edition = "2021"
description = "A GitHub Actions workflow validator and executor"
documentation = "https://github.com/bahdotsh/wrkflw"

View File

@@ -8,7 +8,7 @@ license.workspace = true
[dependencies]
# Internal crates
models = { path = "../models" }
logging = { path = "../logging", version = "0.4.0" }
logging = { path = "../logging", version = "0.5.0" }
# External dependencies
async-trait.workspace = true
@@ -18,5 +18,5 @@ serde_yaml.workspace = true
tempfile = "3.9"
tokio.workspace = true
futures = "0.3"
utils = { path = "../utils", version = "0.4.0" }
utils = { path = "../utils", version = "0.5.0" }
which = "4.4"