Skip to content

Commit 8e54684

Browse files
Update to version = "0.90.0" prior to release. (#1612)
1 parent e0a66ab commit 8e54684

File tree

14 files changed

+40
-40
lines changed

14 files changed

+40
-40
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["flowc", "flowstdlib", "flowrlib", "flowr", "flowcore", "flowmacro",
33
default-members = ["flowc", "flowstdlib", "flowrlib", "flowr", "flowcore", "flowmacro", "flowsamples"]
44

55
[workspace.package]
6-
version = "0.90.0"
6+
version = "0.91.0"
77
authors = ["Andrew Mackenzie <[email protected]>"]
88
license = "MIT"
99
documentation = "https://github.com/andrewdavidmackenzie/flow/README.md"

flowc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ default = ["debugger"]
2222
debugger = ["flowcore/debugger"] # feature to add output for the debugger
2323

2424
[dependencies]
25-
flowcore = {path = "../flowcore", version = "0.90.0", features = ["context", "file_provider", "http_provider", "meta_provider"]}
25+
flowcore = {path = "../flowcore", version = "0.91.0", features = ["context", "file_provider", "http_provider", "meta_provider"]}
2626
clap = "~4"
2727
simplog = { version = "~1.6" }
2828
log = "0.4.6"
@@ -37,7 +37,7 @@ serde = "~1.0.149"
3737
colored = "2"
3838

3939
[dev-dependencies]
40-
flowcore = {path = "../flowcore", version = "0.90.0", features = ["context"]}
40+
flowcore = {path = "../flowcore", version = "0.91.0", features = ["context"]}
4141
tempdir = "~0.3.5"
4242
simpath = { version = "~2.3", features = ["urls"]}
4343
serial_test = "0.10.0"

flowc/tests/test-functions/test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ panic = 'abort' # About unwinding code
1818
strip = "debuginfo"
1919

2020
[dependencies]
21-
flowcore = {path = "../../../../flowcore", version = "0.90.0"}
22-
flowmacro = {path = "../../../../flowmacro", version = "0.90.0"}
21+
flowcore = {path = "../../../../flowcore", version = "0.91.0"}
22+
flowmacro = {path = "../../../../flowmacro", version = "0.91.0"}
2323
serde_json = { version = "1.0", default-features = false }
2424

2525
[workspace]

flowmacro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ proc-macro = true
1919
[dependencies]
2020
syn = { version = "~1.0", features =["full"] } #Full is required for ItemFn in macro parsing
2121
quote = "~1.0"
22-
flowcore = {path = "../flowcore", version = "0.90.0"}
22+
flowcore = {path = "../flowcore", version = "0.91.0"}
2323
toml = "0.5.10"
2424
proc-macro2 = "1.0"
2525

flowr/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ debugger = ["flowrlib/debugger", "flowcore/debugger", "rustyline"] # feature to
2424
metrics = ["flowrlib/metrics"] # feature for tracking of metrics during execution - requires flowrlib with metrics also
2525

2626
[dependencies]
27-
flowcore = {path = "../flowcore", version = "0.90.0", features = ["context"] }
28-
flowrlib = {path = "../flowrlib", version = "0.90.0", features = ["context", "submission"] }
29-
flowstdlib = {path = "../flowstdlib", version = "0.90.0" }
27+
flowcore = {path = "../flowcore", version = "0.91.0", features = ["context"] }
28+
flowrlib = {path = "../flowrlib", version = "0.91.0", features = ["context", "submission"] }
29+
flowstdlib = {path = "../flowstdlib", version = "0.91.0" }
3030
clap = "~4"
3131
simplog = "~1.6"
3232
log = "0.4.6"

flowrex/Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flowrex/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "flowrex"
33
description = "A minimal executor for flowr jobs"
4-
version = "0.90.0"
4+
version = "0.91.0"
55
authors = ["Andrew Mackenzie <[email protected]>"]
66
license = "MIT"
77
documentation = "https://github.com/andrewdavidmackenzie/flow/README.md"
@@ -21,9 +21,9 @@ path = "src/main.rs"
2121
default = ["flowstdlib"]
2222

2323
[dependencies]
24-
flowcore = {path = "../flowcore", version = "0.90.0"}
25-
flowrlib = {path = "../flowrlib", version = "0.90.0"}
26-
flowstdlib = {path = "../flowstdlib", version = "0.90.0", optional = true }
24+
flowcore = {path = "../flowcore", version = "0.91.0"}
25+
flowrlib = {path = "../flowrlib", version = "0.91.0"}
26+
flowstdlib = {path = "../flowstdlib", version = "0.91.0", optional = true }
2727
simplog = { version = "~1.6" }
2828
simpath = { version = "~2.3", features = ["urls"]}
2929
clap = "~4"

flowrlib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ debugger = ["flowcore/debugger"] # feature to add the debugger, requires flowcor
2525
metrics = [] # feature for tracking of metrics during execution
2626

2727
[dependencies]
28-
flowcore = {path = "../flowcore", version = "0.90.0", features = ["file_provider", "http_provider",
28+
flowcore = {path = "../flowcore", version = "0.91.0", features = ["file_provider", "http_provider",
2929
"context", "meta_provider"]}
3030
log = "0.4.6"
3131
url = { version = "2.2", features = ["serde"] }

flowsamples/mandlebrot/escapes/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ panic = 'abort' # About unwinding code
1818
strip = "debuginfo"
1919

2020
[dependencies]
21-
flowcore = {path = "../../../flowcore", version = "0.90.0"}
22-
flowmacro = {path = "../../../flowmacro", version = "0.90.0"}
21+
flowcore = {path = "../../../flowcore", version = "0.91.0"}
22+
flowmacro = {path = "../../../flowmacro", version = "0.91.0"}
2323
serde_json = { version = "1.0", default-features = false }
2424
num = "0.4.0"
2525

0 commit comments

Comments
 (0)