From 0796ed41e63ea8cd22caac5a7b8bd004352bc6ca Mon Sep 17 00:00:00 2001 From: Andrew Mackenzie Date: Fri, 18 Aug 2023 10:22:53 +0200 Subject: [PATCH] chore: Release --- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- flowc/Cargo.toml | 4 ++-- flowmacro/Cargo.toml | 2 +- flowr/Cargo.toml | 6 +++--- flowr/utilities/Cargo.toml | 2 +- flowstdlib/Cargo.toml | 10 +++++----- 7 files changed, 19 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5947b76027..0458a9e028 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1095,7 +1095,7 @@ dependencies = [ [[package]] name = "flowc" -version = "0.132.0" +version = "0.133.0" dependencies = [ "clap", "colored", @@ -1116,7 +1116,7 @@ dependencies = [ [[package]] name = "flowcore" -version = "0.132.0" +version = "0.133.0" dependencies = [ "curl", "error-chain", @@ -1133,7 +1133,7 @@ dependencies = [ [[package]] name = "flowmacro" -version = "0.132.0" +version = "0.133.0" dependencies = [ "flowcore", "proc-macro2", @@ -1145,7 +1145,7 @@ dependencies = [ [[package]] name = "flowr" -version = "0.132.0" +version = "0.133.0" dependencies = [ "clap", "env_logger", @@ -1178,11 +1178,11 @@ dependencies = [ [[package]] name = "flowr-utilities" -version = "0.132.0" +version = "0.133.0" [[package]] name = "flowstdlib" -version = "0.132.0" +version = "0.133.0" dependencies = [ "error-chain", "flowcore", diff --git a/Cargo.toml b/Cargo.toml index ed1d6dd0bb..1c20f274a3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ default-members = ["flowc", "flowstdlib", "flowr", "flowcore", "flowmacro"] resolver = "2" [workspace.package] -version = "0.132.0" +version = "0.133.0" authors = ["Andrew Mackenzie "] license = "MIT" license-file = "LICENSE" diff --git a/flowc/Cargo.toml b/flowc/Cargo.toml index b34a7e7c08..9fae5fd18f 100644 --- a/flowc/Cargo.toml +++ b/flowc/Cargo.toml @@ -26,7 +26,7 @@ default = ["debugger"] debugger = ["flowcore/debugger"] # feature to add output for the debugger [dependencies] -flowcore = {path = "../flowcore", version = "0.132.0", features = ["context", "file_provider", "http_provider", "meta_provider"]} +flowcore = {path = "../flowcore", version = "0.133.0", features = ["context", "file_provider", "http_provider", "meta_provider"]} clap = "~4" env_logger = "0.10.0" log = "0.4.20" @@ -42,7 +42,7 @@ colored = "2" toml = { version = "0.7.6" } [dev-dependencies] -flowcore = {path = "../flowcore", version = "0.132.0", features = ["context"]} +flowcore = {path = "../flowcore", version = "0.133.0", features = ["context"]} tempdir = "~0.3.5" simpath = { version = "~2.5", features = ["urls"]} serial_test = "2.0.0" diff --git a/flowmacro/Cargo.toml b/flowmacro/Cargo.toml index 6fcc56e2c4..0cdd99e29b 100644 --- a/flowmacro/Cargo.toml +++ b/flowmacro/Cargo.toml @@ -19,7 +19,7 @@ proc-macro = true [dependencies] syn = { version = "~2.0", features =["full"] } #Full is required for ItemFn in macro parsing quote = "~1.0" -flowcore = {path = "../flowcore", version = "0.132.0" } +flowcore = {path = "../flowcore", version = "0.133.0" } toml = "0.7.6" proc-macro2 = "1.0" diff --git a/flowr/Cargo.toml b/flowr/Cargo.toml index 02684dc11b..c8f504a3b0 100644 --- a/flowr/Cargo.toml +++ b/flowr/Cargo.toml @@ -41,9 +41,9 @@ submission = [] context = ["flowcore/context"] [dependencies] -flowcore = {path = "../flowcore", version = "0.132.0", features = ["context", "file_provider", "http_provider", +flowcore = {path = "../flowcore", version = "0.133.0", features = ["context", "file_provider", "http_provider", "context", "meta_provider"] } -flowstdlib = {path = "../flowstdlib", version = "0.132.0", optional = true } +flowstdlib = {path = "../flowstdlib", version = "0.133.0", optional = true } clap = "~4" log = "0.4.20" env_logger = "0.10.0" @@ -79,4 +79,4 @@ serial_test = "2.0.0" portpicker = "0.1.1" # These two are needed for examples flowr-utilities = { path = "utilities" } -flowstdlib = {path = "../flowstdlib", version = "0.132.0" } +flowstdlib = {path = "../flowstdlib", version = "0.133.0" } diff --git a/flowr/utilities/Cargo.toml b/flowr/utilities/Cargo.toml index ec3da31738..eb1e61c6ed 100644 --- a/flowr/utilities/Cargo.toml +++ b/flowr/utilities/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "flowr-utilities" description = "A set of utilities for tests and examples" -version = "0.132.0" +version = "0.133.0" readme = "README.md" license = "MIT" documentation = "https://github.com/andrewdavidmackenzie/flow/README.md" diff --git a/flowstdlib/Cargo.toml b/flowstdlib/Cargo.toml index 97480179f5..cbf0a69052 100644 --- a/flowstdlib/Cargo.toml +++ b/flowstdlib/Cargo.toml @@ -2,7 +2,7 @@ # Don't inherit from workspace as this is parsed by flowc for MetaData and it is not workspace inheritance aware name = "flowstdlib" description = "The standard library of functions and flows for 'flow' programs" -version = "0.132.0" +version = "0.133.0" authors = ["Andrew Mackenzie "] # Inherit the others that is not parsed by flowc license.workspace = true @@ -20,8 +20,8 @@ name = "flowstdlib" path = "src/lib.rs" [dependencies] -flowmacro = {path = "../flowmacro", version = "0.132.0" } -flowcore = {path = "../flowcore", version = "0.132.0" } +flowmacro = {path = "../flowmacro", version = "0.133.0" } +flowcore = {path = "../flowcore", version = "0.133.0" } simpath = { version = "2", features = ["urls"]} url = { version = "2.2", features = ["serde"] } serde_json = "1.0" @@ -29,8 +29,8 @@ error-chain = "0.12.2" [dev-dependencies] tempdir = "~0.3.5" -flowcore = {path = "../flowcore", version = "0.132.0" } -flowmacro = {path = "../flowmacro", version = "0.132.0" } +flowcore = {path = "../flowcore", version = "0.133.0" } +flowmacro = {path = "../flowmacro", version = "0.133.0" } serde_json = { version = "1.0", default-features = false } [build-dependencies]