diff --git a/Cargo.lock b/Cargo.lock index 06712d5..12849bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 30a7fab..d96c6dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/crates/evaluator/Cargo.toml b/crates/evaluator/Cargo.toml index a30a721..fe643fa 100644 --- a/crates/evaluator/Cargo.toml +++ b/crates/evaluator/Cargo.toml @@ -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 diff --git a/crates/executor/Cargo.toml b/crates/executor/Cargo.toml index e5899e4..cba6410 100644 --- a/crates/executor/Cargo.toml +++ b/crates/executor/Cargo.toml @@ -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 diff --git a/crates/github/Cargo.toml b/crates/github/Cargo.toml index 8809b1f..f68550f 100644 --- a/crates/github/Cargo.toml +++ b/crates/github/Cargo.toml @@ -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 diff --git a/crates/gitlab/Cargo.toml b/crates/gitlab/Cargo.toml index 42f100b..f35212e 100644 --- a/crates/gitlab/Cargo.toml +++ b/crates/gitlab/Cargo.toml @@ -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 diff --git a/crates/logging/Cargo.toml b/crates/logging/Cargo.toml index a59ee8a..5721229 100644 --- a/crates/logging/Cargo.toml +++ b/crates/logging/Cargo.toml @@ -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 diff --git a/crates/matrix/Cargo.toml b/crates/matrix/Cargo.toml index cec7775..cf92f5a 100644 --- a/crates/matrix/Cargo.toml +++ b/crates/matrix/Cargo.toml @@ -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 diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index 3e0b015..f5884bb 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -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 diff --git a/crates/runtime/Cargo.toml b/crates/runtime/Cargo.toml index 506c0a9..cfc4d00 100644 --- a/crates/runtime/Cargo.toml +++ b/crates/runtime/Cargo.toml @@ -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" diff --git a/crates/ui/Cargo.toml b/crates/ui/Cargo.toml index bde141b..c0dfcd0 100644 --- a/crates/ui/Cargo.toml +++ b/crates/ui/Cargo.toml @@ -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 diff --git a/crates/utils/Cargo.toml b/crates/utils/Cargo.toml index f18d7ad..1875b81 100644 --- a/crates/utils/Cargo.toml +++ b/crates/utils/Cargo.toml @@ -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 diff --git a/crates/validators/Cargo.toml b/crates/validators/Cargo.toml index 43d278e..250f535 100644 --- a/crates/validators/Cargo.toml +++ b/crates/validators/Cargo.toml @@ -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 diff --git a/crates/wrkflw/Cargo.toml b/crates/wrkflw/Cargo.toml index 6740a57..64b8ad8 100644 --- a/crates/wrkflw/Cargo.toml +++ b/crates/wrkflw/Cargo.toml @@ -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