Skip to content

Commit

Permalink
Release 0.70.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdavidmackenzie committed Sep 30, 2022
1 parent fc08864 commit 4db16ec
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion flowc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ default = ["debugger"]
debugger = ["flowcore/debugger"] # feature to add output for the debugger

[dependencies]
flowcore = {path = "../flowcore", version = "0.61.0", features = ["context"]}
flowcore = {path = "../flowcore", version = "0.70.0", features = ["context"]}
clap = "~3"
simplog = { version = "~1.5" }
log = "0.4.6"
Expand Down
2 changes: 1 addition & 1 deletion flowmacro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ 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.61.0"}
flowcore = {path = "../flowcore", version = "0.70.0"}
toml = "0.5.8"
proc-macro2 = "1.0"
6 changes: 3 additions & 3 deletions flowr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ 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.61.0"}
flowrlib = {path = "../flowrlib", version = "0.61.0"}
flowcore = {path = "../flowcore", version = "0.70.0"}
flowrlib = {path = "../flowrlib", version = "0.70.0"}
clap = "~3"
simplog = { version = "~1.5" }
log = "0.4.6"
Expand All @@ -43,7 +43,7 @@ simpdiscover = "~0.3"
zmq = "0.9.2"

# Optional dependencies
flowstdlib = {path = "../flowstdlib", version = "0.61.0", optional = true }
flowstdlib = {path = "../flowstdlib", version = "0.70.0", optional = true }
rustyline = {version = "10.0.0", optional = true }
ctrlc = {version = "3.2.3", optional = true}
image = {version = "=0.24.4", optional = true}
Expand Down
2 changes: 1 addition & 1 deletion flowrlib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.61.0"}
flowcore = {path = "../flowcore", version = "0.70.0"}
log = "0.4.6"
url = { version = "2.2", features = ["serde"] }
serde_derive = "~1.0.27"
Expand Down
6 changes: 3 additions & 3 deletions flowstdlib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.61.0"
version = "0.70.0"
authors = ["Andrew Mackenzie <[email protected]>"]
# Inherit the others that is not parsed by flowc
license.workspace = true
Expand Down Expand Up @@ -30,8 +30,8 @@ default = []
wasm = []

[dependencies]
flowmacro = {path = "../flowmacro", version = "0.61.0" }
flowcore = {path = "../flowcore", version = "0.61.0" }
flowmacro = {path = "../flowmacro", version = "0.70.0" }
flowcore = {path = "../flowcore", version = "0.70.0" }
simpath = { version = "~2.3", features = ["urls"]}
url = { version = "2.2", features = ["serde"] }
serde_json = "1.0"
Expand Down

0 comments on commit 4db16ec

Please sign in to comment.