diff --git a/Cargo.lock b/Cargo.lock index b35aa40..1e0fb25 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2545,7 +2545,7 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" [[package]] name = "wrkflw" -version = "0.6.0" +version = "0.7.0" dependencies = [ "bollard", "chrono", @@ -2592,7 +2592,7 @@ dependencies = [ [[package]] name = "wrkflw-evaluator" -version = "0.6.0" +version = "0.7.0" dependencies = [ "colored", "serde_yaml", @@ -2602,7 +2602,7 @@ dependencies = [ [[package]] name = "wrkflw-executor" -version = "0.6.0" +version = "0.7.0" dependencies = [ "async-trait", "bollard", @@ -2632,7 +2632,7 @@ dependencies = [ [[package]] name = "wrkflw-github" -version = "0.6.0" +version = "0.7.0" dependencies = [ "lazy_static", "regex", @@ -2646,7 +2646,7 @@ dependencies = [ [[package]] name = "wrkflw-gitlab" -version = "0.6.0" +version = "0.7.0" dependencies = [ "lazy_static", "regex", @@ -2661,7 +2661,7 @@ dependencies = [ [[package]] name = "wrkflw-logging" -version = "0.6.0" +version = "0.7.0" dependencies = [ "chrono", "once_cell", @@ -2672,7 +2672,7 @@ dependencies = [ [[package]] name = "wrkflw-matrix" -version = "0.6.0" +version = "0.7.0" dependencies = [ "indexmap 2.8.0", "serde", @@ -2683,7 +2683,7 @@ dependencies = [ [[package]] name = "wrkflw-models" -version = "0.6.0" +version = "0.7.0" dependencies = [ "serde", "serde_json", @@ -2693,7 +2693,7 @@ dependencies = [ [[package]] name = "wrkflw-parser" -version = "0.6.0" +version = "0.7.0" dependencies = [ "jsonschema", "serde", @@ -2707,7 +2707,7 @@ dependencies = [ [[package]] name = "wrkflw-runtime" -version = "0.6.0" +version = "0.7.0" dependencies = [ "async-trait", "futures", @@ -2726,7 +2726,7 @@ dependencies = [ [[package]] name = "wrkflw-ui" -version = "0.6.0" +version = "0.7.0" dependencies = [ "chrono", "crossterm 0.26.1", @@ -2748,7 +2748,7 @@ dependencies = [ [[package]] name = "wrkflw-utils" -version = "0.6.0" +version = "0.7.0" dependencies = [ "nix", "serde", @@ -2758,7 +2758,7 @@ dependencies = [ [[package]] name = "wrkflw-validators" -version = "0.6.0" +version = "0.7.0" dependencies = [ "serde", "serde_yaml", diff --git a/Cargo.toml b/Cargo.toml index d96c6dd..1029b27 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.6.0" +version = "0.7.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 fe643fa..eda19b3 100644 --- a/crates/evaluator/Cargo.toml +++ b/crates/evaluator/Cargo.toml @@ -12,9 +12,9 @@ categories.workspace = true [dependencies] # Internal crates -wrkflw-models = { path = "../models", version = "0.6.0" } -wrkflw-validators = { path = "../validators", version = "0.6.0" } +wrkflw-models = { path = "../models", version = "0.7.0" } +wrkflw-validators = { path = "../validators", version = "0.7.0" } # External dependencies colored.workspace = true -serde_yaml.workspace = true \ No newline at end of file +serde_yaml.workspace = true diff --git a/crates/executor/Cargo.toml b/crates/executor/Cargo.toml index cba6410..bfa23f7 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.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" } +wrkflw-models = { path = "../models", version = "0.7.0" } +wrkflw-parser = { path = "../parser", version = "0.7.0" } +wrkflw-runtime = { path = "../runtime", version = "0.7.0" } +wrkflw-logging = { path = "../logging", version = "0.7.0" } +wrkflw-matrix = { path = "../matrix", version = "0.7.0" } +wrkflw-utils = { path = "../utils", version = "0.7.0" } # External dependencies async-trait.workspace = true diff --git a/crates/github/Cargo.toml b/crates/github/Cargo.toml index f68550f..c261cff 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.6.0" } +wrkflw-models = { path = "../models", version = "0.7.0" } # External dependencies from workspace serde.workspace = true diff --git a/crates/gitlab/Cargo.toml b/crates/gitlab/Cargo.toml index f35212e..13ec51b 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.6.0" } +wrkflw-models = { path = "../models", version = "0.7.0" } # External dependencies lazy_static.workspace = true diff --git a/crates/logging/Cargo.toml b/crates/logging/Cargo.toml index 5721229..f41afa5 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.6.0" } +wrkflw-models = { path = "../models", version = "0.7.0" } # External dependencies chrono.workspace = true diff --git a/crates/matrix/Cargo.toml b/crates/matrix/Cargo.toml index cf92f5a..3266a91 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.6.0" } +wrkflw-models = { path = "../models", version = "0.7.0" } # External dependencies indexmap.workspace = true diff --git a/crates/models/Cargo.toml b/crates/models/Cargo.toml index cd01e52..ccf9bcb 100644 --- a/crates/models/Cargo.toml +++ b/crates/models/Cargo.toml @@ -14,4 +14,4 @@ categories.workspace = true serde.workspace = true serde_yaml.workspace = true serde_json.workspace = true -thiserror.workspace = true \ No newline at end of file +thiserror.workspace = true diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index f5884bb..ca4ba28 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.6.0" } -wrkflw-matrix = { path = "../matrix", version = "0.6.0" } +wrkflw-models = { path = "../models", version = "0.7.0" } +wrkflw-matrix = { path = "../matrix", version = "0.7.0" } # External dependencies jsonschema.workspace = true diff --git a/crates/runtime/Cargo.toml b/crates/runtime/Cargo.toml index 461c3f8..d5f51a8 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.6.0" } -wrkflw-logging = { path = "../logging", version = "0.6.0" } +wrkflw-models = { path = "../models", version = "0.7.0" } +wrkflw-logging = { path = "../logging", version = "0.7.0" } # External dependencies async-trait.workspace = true @@ -23,7 +23,7 @@ serde_yaml.workspace = true tempfile = "3.9" tokio.workspace = true futures = "0.3" -wrkflw-utils = { path = "../utils", version = "0.6.0" } +wrkflw-utils = { path = "../utils", version = "0.7.0" } which = "4.4" regex = "1.10" thiserror = "1.0" diff --git a/crates/ui/Cargo.toml b/crates/ui/Cargo.toml index c0dfcd0..8ea8b19 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.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" } +wrkflw-models = { path = "../models", version = "0.7.0" } +wrkflw-evaluator = { path = "../evaluator", version = "0.7.0" } +wrkflw-executor = { path = "../executor", version = "0.7.0" } +wrkflw-logging = { path = "../logging", version = "0.7.0" } +wrkflw-utils = { path = "../utils", version = "0.7.0" } +wrkflw-github = { path = "../github", version = "0.7.0" } # External dependencies chrono.workspace = true diff --git a/crates/utils/Cargo.toml b/crates/utils/Cargo.toml index 1875b81..5880bf8 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.6.0" } +wrkflw-models = { path = "../models", version = "0.7.0" } # External dependencies serde.workspace = true diff --git a/crates/validators/Cargo.toml b/crates/validators/Cargo.toml index 250f535..8cee0cd 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.6.0" } -wrkflw-matrix = { path = "../matrix", version = "0.6.0" } +wrkflw-models = { path = "../models", version = "0.7.0" } +wrkflw-matrix = { path = "../matrix", version = "0.7.0" } # External dependencies serde.workspace = true diff --git a/crates/wrkflw/Cargo.toml b/crates/wrkflw/Cargo.toml index 64b8ad8..da63938 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.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" } +wrkflw-models = { path = "../models", version = "0.7.0" } +wrkflw-executor = { path = "../executor", version = "0.7.0" } +wrkflw-github = { path = "../github", version = "0.7.0" } +wrkflw-gitlab = { path = "../gitlab", version = "0.7.0" } +wrkflw-logging = { path = "../logging", version = "0.7.0" } +wrkflw-matrix = { path = "../matrix", version = "0.7.0" } +wrkflw-parser = { path = "../parser", version = "0.7.0" } +wrkflw-runtime = { path = "../runtime", version = "0.7.0" } +wrkflw-ui = { path = "../ui", version = "0.7.0" } +wrkflw-utils = { path = "../utils", version = "0.7.0" } +wrkflw-validators = { path = "../validators", version = "0.7.0" } +wrkflw-evaluator = { path = "../evaluator", version = "0.7.0" } # External dependencies clap.workspace = true @@ -62,4 +62,4 @@ path = "src/lib.rs" [[bin]] name = "wrkflw" -path = "src/main.rs" \ No newline at end of file +path = "src/main.rs"