chore: bump version to 0.6.0

- Updated workspace version from 0.5.0 to 0.6.0
- Updated all internal crate dependencies to 0.6.0
- Verified all tests pass and builds succeed
This commit is contained in:
bahdotsh
2025-08-09 17:46:09 +05:30
parent f0b6633cb8
commit 537bf2f9d1
14 changed files with 52 additions and 52 deletions

26
Cargo.lock generated
View File

@@ -2545,7 +2545,7 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
[[package]]
name = "wrkflw"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"bollard",
"chrono",
@@ -2592,7 +2592,7 @@ dependencies = [
[[package]]
name = "wrkflw-evaluator"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"colored",
"serde_yaml",
@@ -2602,7 +2602,7 @@ dependencies = [
[[package]]
name = "wrkflw-executor"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"async-trait",
"bollard",
@@ -2632,7 +2632,7 @@ dependencies = [
[[package]]
name = "wrkflw-github"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"lazy_static",
"regex",
@@ -2646,7 +2646,7 @@ dependencies = [
[[package]]
name = "wrkflw-gitlab"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"lazy_static",
"regex",
@@ -2661,7 +2661,7 @@ dependencies = [
[[package]]
name = "wrkflw-logging"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"chrono",
"once_cell",
@@ -2672,7 +2672,7 @@ dependencies = [
[[package]]
name = "wrkflw-matrix"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"indexmap 2.8.0",
"serde",
@@ -2683,7 +2683,7 @@ dependencies = [
[[package]]
name = "wrkflw-models"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"serde",
"serde_json",
@@ -2693,7 +2693,7 @@ dependencies = [
[[package]]
name = "wrkflw-parser"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"jsonschema",
"serde",
@@ -2707,7 +2707,7 @@ dependencies = [
[[package]]
name = "wrkflw-runtime"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"async-trait",
"futures",
@@ -2724,7 +2724,7 @@ dependencies = [
[[package]]
name = "wrkflw-ui"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"chrono",
"crossterm 0.26.1",
@@ -2746,7 +2746,7 @@ dependencies = [
[[package]]
name = "wrkflw-utils"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"nix",
"serde",
@@ -2756,7 +2756,7 @@ dependencies = [
[[package]]
name = "wrkflw-validators"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"serde",
"serde_yaml",

View File

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

View File

@@ -12,8 +12,8 @@ categories.workspace = true
[dependencies]
# Internal crates
wrkflw-models = { path = "../models", version = "0.5.0" }
wrkflw-validators = { path = "../validators", version = "0.5.0" }
wrkflw-models = { path = "../models", version = "0.6.0" }
wrkflw-validators = { path = "../validators", version = "0.6.0" }
# External dependencies
colored.workspace = true

View File

@@ -12,12 +12,12 @@ categories.workspace = true
[dependencies]
# Internal crates
wrkflw-models = { path = "../models", version = "0.5.0" }
wrkflw-parser = { path = "../parser", version = "0.5.0" }
wrkflw-runtime = { path = "../runtime", version = "0.5.0" }
wrkflw-logging = { path = "../logging", version = "0.5.0" }
wrkflw-matrix = { path = "../matrix", version = "0.5.0" }
wrkflw-utils = { path = "../utils", version = "0.5.0" }
wrkflw-models = { path = "../models", version = "0.6.0" }
wrkflw-parser = { path = "../parser", version = "0.6.0" }
wrkflw-runtime = { path = "../runtime", version = "0.6.0" }
wrkflw-logging = { path = "../logging", version = "0.6.0" }
wrkflw-matrix = { path = "../matrix", version = "0.6.0" }
wrkflw-utils = { path = "../utils", version = "0.6.0" }
# External dependencies
async-trait.workspace = true

View File

@@ -12,7 +12,7 @@ categories.workspace = true
[dependencies]
# Internal crates
wrkflw-models = { path = "../models", version = "0.5.0" }
wrkflw-models = { path = "../models", version = "0.6.0" }
# External dependencies from workspace
serde.workspace = true

View File

@@ -12,7 +12,7 @@ categories.workspace = true
[dependencies]
# Internal crates
wrkflw-models = { path = "../models", version = "0.5.0" }
wrkflw-models = { path = "../models", version = "0.6.0" }
# External dependencies
lazy_static.workspace = true

View File

@@ -12,7 +12,7 @@ categories.workspace = true
[dependencies]
# Internal crates
wrkflw-models = { path = "../models", version = "0.5.0" }
wrkflw-models = { path = "../models", version = "0.6.0" }
# External dependencies
chrono.workspace = true

View File

@@ -12,7 +12,7 @@ categories.workspace = true
[dependencies]
# Internal crates
wrkflw-models = { path = "../models", version = "0.5.0" }
wrkflw-models = { path = "../models", version = "0.6.0" }
# External dependencies
indexmap.workspace = true

View File

@@ -12,8 +12,8 @@ categories.workspace = true
[dependencies]
# Internal crates
wrkflw-models = { path = "../models", version = "0.5.0" }
wrkflw-matrix = { path = "../matrix", version = "0.5.0" }
wrkflw-models = { path = "../models", version = "0.6.0" }
wrkflw-matrix = { path = "../matrix", version = "0.6.0" }
# External dependencies
jsonschema.workspace = true

View File

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

View File

@@ -12,12 +12,12 @@ categories.workspace = true
[dependencies]
# Internal crates
wrkflw-models = { path = "../models", version = "0.5.0" }
wrkflw-evaluator = { path = "../evaluator", version = "0.5.0" }
wrkflw-executor = { path = "../executor", version = "0.5.0" }
wrkflw-logging = { path = "../logging", version = "0.5.0" }
wrkflw-utils = { path = "../utils", version = "0.5.0" }
wrkflw-github = { path = "../github", version = "0.5.0" }
wrkflw-models = { path = "../models", version = "0.6.0" }
wrkflw-evaluator = { path = "../evaluator", version = "0.6.0" }
wrkflw-executor = { path = "../executor", version = "0.6.0" }
wrkflw-logging = { path = "../logging", version = "0.6.0" }
wrkflw-utils = { path = "../utils", version = "0.6.0" }
wrkflw-github = { path = "../github", version = "0.6.0" }
# External dependencies
chrono.workspace = true

View File

@@ -12,7 +12,7 @@ categories.workspace = true
[dependencies]
# Internal crates
wrkflw-models = { path = "../models", version = "0.5.0" }
wrkflw-models = { path = "../models", version = "0.6.0" }
# External dependencies
serde.workspace = true

View File

@@ -12,8 +12,8 @@ categories.workspace = true
[dependencies]
# Internal crates
wrkflw-models = { path = "../models", version = "0.5.0" }
wrkflw-matrix = { path = "../matrix", version = "0.5.0" }
wrkflw-models = { path = "../models", version = "0.6.0" }
wrkflw-matrix = { path = "../matrix", version = "0.6.0" }
# External dependencies
serde.workspace = true

View File

@@ -12,18 +12,18 @@ license.workspace = true
[dependencies]
# Workspace crates
wrkflw-models = { path = "../models", version = "0.5.0" }
wrkflw-executor = { path = "../executor", version = "0.5.0" }
wrkflw-github = { path = "../github", version = "0.5.0" }
wrkflw-gitlab = { path = "../gitlab", version = "0.5.0" }
wrkflw-logging = { path = "../logging", version = "0.5.0" }
wrkflw-matrix = { path = "../matrix", version = "0.5.0" }
wrkflw-parser = { path = "../parser", version = "0.5.0" }
wrkflw-runtime = { path = "../runtime", version = "0.5.0" }
wrkflw-ui = { path = "../ui", version = "0.5.0" }
wrkflw-utils = { path = "../utils", version = "0.5.0" }
wrkflw-validators = { path = "../validators", version = "0.5.0" }
wrkflw-evaluator = { path = "../evaluator", version = "0.5.0" }
wrkflw-models = { path = "../models", version = "0.6.0" }
wrkflw-executor = { path = "../executor", version = "0.6.0" }
wrkflw-github = { path = "../github", version = "0.6.0" }
wrkflw-gitlab = { path = "../gitlab", version = "0.6.0" }
wrkflw-logging = { path = "../logging", version = "0.6.0" }
wrkflw-matrix = { path = "../matrix", version = "0.6.0" }
wrkflw-parser = { path = "../parser", version = "0.6.0" }
wrkflw-runtime = { path = "../runtime", version = "0.6.0" }
wrkflw-ui = { path = "../ui", version = "0.6.0" }
wrkflw-utils = { path = "../utils", version = "0.6.0" }
wrkflw-validators = { path = "../validators", version = "0.6.0" }
wrkflw-evaluator = { path = "../evaluator", version = "0.6.0" }
# External dependencies
clap.workspace = true