diff --git a/Cargo.toml b/Cargo.toml index 773c709227..33527360a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["flowc", "flowstdlib", "flowrlib", "flowr", "flowcore", "flowmacro", default-members = ["flowc", "flowstdlib", "flowrlib", "flowr", "flowcore", "flowmacro", "flowsamples"] [workspace.package] -version = "0.80.0" +version = "0.90.0" authors = ["Andrew Mackenzie "] license = "MIT" documentation = "https://github.com/andrewdavidmackenzie/flow/README.md" diff --git a/flowc/Cargo.toml b/flowc/Cargo.toml index 805080b2e5..0ac02f6128 100644 --- a/flowc/Cargo.toml +++ b/flowc/Cargo.toml @@ -22,7 +22,7 @@ default = ["debugger"] debugger = ["flowcore/debugger"] # feature to add output for the debugger [dependencies] -flowcore = {path = "../flowcore", version = "0.80.0", features = ["context", "file_provider", "http_provider", "meta_provider"]} +flowcore = {path = "../flowcore", version = "0.90.0", features = ["context", "file_provider", "http_provider", "meta_provider"]} clap = "~4" simplog = { version = "~1.5" } log = "0.4.6" @@ -37,7 +37,7 @@ serde = "~1.0.147" colored = "2" [dev-dependencies] -flowcore = {path = "../flowcore", version = "0.80.0", features = ["context"]} +flowcore = {path = "../flowcore", version = "0.90.0", features = ["context"]} tempdir = "~0.3.5" simpath = { version = "~2.3", features = ["urls"]} serial_test = "0.9.0" diff --git a/flowc/tests/test-functions/test/Cargo.toml b/flowc/tests/test-functions/test/Cargo.toml index 2474d09268..3503bd8133 100644 --- a/flowc/tests/test-functions/test/Cargo.toml +++ b/flowc/tests/test-functions/test/Cargo.toml @@ -18,8 +18,8 @@ panic = 'abort' # About unwinding code strip = "debuginfo" [dependencies] -flowcore = {path = "../../../../flowcore", version = "0.80.0"} -flowmacro = {path = "../../../../flowmacro", version = "0.80.0"} +flowcore = {path = "../../../../flowcore", version = "0.90.0"} +flowmacro = {path = "../../../../flowmacro", version = "0.90.0"} serde_json = { version = "1.0", default-features = false } [workspace] diff --git a/flowmacro/Cargo.toml b/flowmacro/Cargo.toml index b9bd9f93c7..a14a4f8b42 100644 --- a/flowmacro/Cargo.toml +++ b/flowmacro/Cargo.toml @@ -19,7 +19,7 @@ proc-macro = true [dependencies] syn = { version = "~1.0", features =["full"] } #Full is required for ItemFn in macro parsing quote = "~1.0" -flowcore = {path = "../flowcore", version = "0.80.0"} +flowcore = {path = "../flowcore", version = "0.90.0"} toml = "0.5.8" proc-macro2 = "1.0" diff --git a/flowr/Cargo.toml b/flowr/Cargo.toml index 775bc7047a..7425bc8bd4 100644 --- a/flowr/Cargo.toml +++ b/flowr/Cargo.toml @@ -24,9 +24,9 @@ debugger = ["flowrlib/debugger", "flowcore/debugger", "rustyline"] # feature to metrics = ["flowrlib/metrics"] # feature for tracking of metrics during execution - requires flowrlib with metrics also [dependencies] -flowcore = {path = "../flowcore", version = "0.80.0", features = ["context"] } -flowrlib = {path = "../flowrlib", version = "0.80.0", features = ["context", "submission"] } -flowstdlib = {path = "../flowstdlib", version = "0.80.0" } +flowcore = {path = "../flowcore", version = "0.90.0", features = ["context"] } +flowrlib = {path = "../flowrlib", version = "0.90.0", features = ["context", "submission"] } +flowstdlib = {path = "../flowstdlib", version = "0.90.0" } clap = "~4" simplog = { version = "~1.5" } log = "0.4.6" diff --git a/flowrex/Cargo.toml b/flowrex/Cargo.toml index eb2e018532..33c5ea214a 100644 --- a/flowrex/Cargo.toml +++ b/flowrex/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "flowrex" description = "A minimal executor for flowr jobs" -version = "0.80.0" +version = "0.90.0" authors = ["Andrew Mackenzie "] license = "MIT" documentation = "https://github.com/andrewdavidmackenzie/flow/README.md" @@ -21,9 +21,9 @@ path = "src/main.rs" default = ["flowstdlib"] [dependencies] -flowcore = {path = "../flowcore", version = "0.80.0"} -flowrlib = {path = "../flowrlib", version = "0.80.0"} -flowstdlib = {path = "../flowstdlib", version = "0.80.0", optional = true } +flowcore = {path = "../flowcore", version = "0.90.0"} +flowrlib = {path = "../flowrlib", version = "0.90.0"} +flowstdlib = {path = "../flowstdlib", version = "0.90.0", optional = true } simplog = { version = "~1.5" } simpath = { version = "~2.3", features = ["urls"]} clap = "~4" diff --git a/flowrlib/Cargo.toml b/flowrlib/Cargo.toml index 4661aa8c88..fc44929c03 100644 --- a/flowrlib/Cargo.toml +++ b/flowrlib/Cargo.toml @@ -25,7 +25,7 @@ debugger = ["flowcore/debugger"] # feature to add the debugger, requires flowcor metrics = [] # feature for tracking of metrics during execution [dependencies] -flowcore = {path = "../flowcore", version = "0.80.0", features = ["file_provider", "http_provider", +flowcore = {path = "../flowcore", version = "0.90.0", features = ["file_provider", "http_provider", "context", "meta_provider"]} log = "0.4.6" url = { version = "2.2", features = ["serde"] } diff --git a/flowsamples/mandlebrot/escapes/Cargo.toml b/flowsamples/mandlebrot/escapes/Cargo.toml index 1eda6e3194..feac4dc682 100644 --- a/flowsamples/mandlebrot/escapes/Cargo.toml +++ b/flowsamples/mandlebrot/escapes/Cargo.toml @@ -18,8 +18,8 @@ panic = 'abort' # About unwinding code strip = "debuginfo" [dependencies] -flowcore = {path = "../../../flowcore", version = "0.80.0"} -flowmacro = {path = "../../../flowmacro", version = "0.80.0"} +flowcore = {path = "../../../flowcore", version = "0.90.0"} +flowmacro = {path = "../../../flowmacro", version = "0.90.0"} serde_json = { version = "1.0", default-features = false } num = "0.4.0" diff --git a/flowsamples/mandlebrot/pixel_to_point/Cargo.toml b/flowsamples/mandlebrot/pixel_to_point/Cargo.toml index 7e87fcb1a3..42c4c2a61c 100644 --- a/flowsamples/mandlebrot/pixel_to_point/Cargo.toml +++ b/flowsamples/mandlebrot/pixel_to_point/Cargo.toml @@ -18,8 +18,8 @@ panic = 'abort' # About unwinding code strip = "debuginfo" [dependencies] -flowcore = {path = "../../../flowcore", version = "0.80.0"} -flowmacro = {path = "../../../flowmacro", version = "0.80.0"} +flowcore = {path = "../../../flowcore", version = "0.90.0"} +flowmacro = {path = "../../../flowmacro", version = "0.90.0"} serde_json = { version = "1.0", default-features = false } [workspace] diff --git a/flowsamples/mandlebrot/project/Cargo.toml b/flowsamples/mandlebrot/project/Cargo.toml index 7195e3d204..7666fe1c18 100644 --- a/flowsamples/mandlebrot/project/Cargo.toml +++ b/flowsamples/mandlebrot/project/Cargo.toml @@ -10,8 +10,8 @@ name="mandlebrot" path = "main.rs" [dependencies] -flowcore = "0.80.0" -flowmacro = "0.80.0" +flowcore = "0.90.0" +flowmacro = "0.90.0" serde_json = "1.0" num = "0.4.0" image = "0.23.12" diff --git a/flowsamples/reverse-echo/reverse/Cargo.toml b/flowsamples/reverse-echo/reverse/Cargo.toml index df7d5b9694..e104f22991 100644 --- a/flowsamples/reverse-echo/reverse/Cargo.toml +++ b/flowsamples/reverse-echo/reverse/Cargo.toml @@ -18,8 +18,8 @@ panic = 'abort' # About unwinding code strip = "debuginfo" [dependencies] -flowcore = {path = "../../../flowcore", version = "0.80.0"} -flowmacro = {path = "../../../flowmacro", version = "0.80.0"} +flowcore = {path = "../../../flowcore", version = "0.90.0"} +flowmacro = {path = "../../../flowmacro", version = "0.90.0"} serde_json = { version = "1.0", default-features = false } [workspace] diff --git a/flowstdlib/Cargo.toml b/flowstdlib/Cargo.toml index 11268191fc..f336867328 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.80.0" +version = "0.90.0" authors = ["Andrew Mackenzie "] # Inherit the others that is not parsed by flowc license.workspace = true @@ -30,8 +30,8 @@ default = [] wasm = [] [dependencies] -flowmacro = {path = "../flowmacro", version = "0.80.0" } -flowcore = {path = "../flowcore", version = "0.80.0" } +flowmacro = {path = "../flowmacro", version = "0.90.0" } +flowcore = {path = "../flowcore", version = "0.90.0" } simpath = { version = "~2.3", features = ["urls"]} url = { version = "2.2", features = ["serde"] } serde_json = "1.0" @@ -39,8 +39,8 @@ error-chain = "0.12.2" [dev-dependencies] tempdir = "~0.3.5" -flowcore = {path = "../flowcore", version = "0.80.0"} -flowmacro = {path = "../flowmacro", version = "0.80.0"} +flowcore = {path = "../flowcore", version = "0.90.0"} +flowmacro = {path = "../flowmacro", version = "0.90.0"} serde_json = { version = "1.0", default-features = false } [build-dependencies] diff --git a/flowstdlib/src/Cargo.toml b/flowstdlib/src/Cargo.toml index c96d9ccbe0..2686360171 100644 --- a/flowstdlib/src/Cargo.toml +++ b/flowstdlib/src/Cargo.toml @@ -11,7 +11,7 @@ members = ["control/compare_switch", "control/index", "control/join", "control/r [workspace.package] name = "flow-stdlib-wasm" description = "The standard library of functions and flows for 'flow' programs" -version = "0.80.0" +version = "0.90.0" authors = ["Andrew Mackenzie "] license = "MIT" documentation = "https://github.com/andrewdavidmackenzie/flow/README.md" @@ -32,6 +32,6 @@ strip = true split-debuginfo = "unpacked" [workspace.dependencies] -flowcore = {path = "../../flowcore", version = "0.80.0"} -flowmacro = {path = "../../flowmacro", version = "0.80.0"} +flowcore = {path = "../../flowcore", version = "0.90.0"} +flowmacro = {path = "../../flowmacro", version = "0.90.0"} serde_json = { version = "1.0", default-features = false } \ No newline at end of file