Skip to content

Commit 6489d37

Browse files
1 parent 5978265 commit 6489d37

8 files changed

Lines changed: 22 additions & 22 deletions

File tree

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.

flowc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flowc"
3-
version = "0.50.0"
3+
version = "0.60.0"
44
authors = ["Andrew Mackenzie <[email protected]>"]
55
description = "A compiler for 'flow' programs"
66
license = "MIT"
@@ -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.50.0"}
25+
flowcore = {path = "../flowcore", version = "0.60.0"}
2626
clap = "~2"
2727
simplog = { version = "~1.5" }
2828
log = "0.4.6"

flowcore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flowcore"
3-
version = "0.50.0"
3+
version = "0.60.0"
44
authors = ["Andrew Mackenzie <[email protected]>"]
55
description = "Structures shared between runtime and clients"
66
license = "MIT"

flowmacro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flowmacro"
3-
version = "0.50.0"
3+
version = "0.60.0"
44
description = "Definition of a 'flow' attribute macro to help write implementations"
55
license = "MIT"
66
documentation = "https://github.com/andrewdavidmackenzie/flow/flowmacro/README.md"
@@ -19,6 +19,6 @@ 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.50.0"}
22+
flowcore = {path = "../flowcore", version = "0.60.0"}
2323
toml = "0.5.8"
2424
proc-macro2 = "1.0"

flowr/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flowr"
3-
version = "0.50.0"
3+
version = "0.60.0"
44
authors = ["Andrew Mackenzie <[email protected]>"]
55
description = "A runner for compiled 'flow' programs"
66
license = "MIT"
@@ -23,8 +23,8 @@ debugger = ["flowrlib/debugger", "flowcore/debugger", "rustyline"] # feature to
2323
metrics = ["flowrlib/metrics"] # feature for tracking of metrics during execution - requires flowrlib with metrics also
2424

2525
[dependencies]
26-
flowcore = {path = "../flowcore", version = "0.50.0"}
27-
flowrlib = {path = "../flowrlib", version = "0.50.0"}
26+
flowcore = {path = "../flowcore", version = "0.60.0"}
27+
flowrlib = {path = "../flowrlib", version = "0.60.0"}
2828
clap = "~2"
2929
simplog = { version = "~1.5" }
3030
log = "0.4.6"
@@ -42,7 +42,7 @@ simpdiscover = "~0.3"
4242
zmq = "0.9.2"
4343

4444
# Optional dependencies
45-
flowstdlib = {path = "../flowstdlib", version = "0.50.0", optional = true }
45+
flowstdlib = {path = "../flowstdlib", version = "0.60.0", optional = true }
4646
rustyline = {version = "9.0.0", optional = true }
4747
anyhow = { version = "1.0", optional = true}
4848

flowrlib/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flowrlib"
3-
version = "0.50.0"
3+
version = "0.60.0"
44
authors = ["Andrew Mackenzie <[email protected]>"]
55
description = "Flow Runner Library (flowrlib) for 'flow' programs"
66
license = "MIT"
@@ -25,7 +25,7 @@ wasmi_runtime = ["wasmi"] # First WASM implementation
2525
wasmtime_runtime = ["wasmtime", "anyhow"] # An alternative WASM implementation
2626

2727
[dependencies]
28-
flowcore = {path = "../flowcore", version = "0.50.0"}
28+
flowcore = {path = "../flowcore", version = "0.60.0"}
2929
log = "0.4.6"
3030
url = { version = "2.2", features = ["serde"] }
3131
serde_derive = "~1.0.27"

flowsamples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flowsamples"
3-
version = "0.50.0"
3+
version = "0.60.0"
44
authors = ["Andrew Mackenzie <[email protected]>"]
55
readme = "README.md"
66
description = "A set of sample 'flow' programs"

flowstdlib/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flowstdlib"
3-
version = "0.50.0"
3+
version = "0.60.0"
44
authors = ["Andrew Mackenzie <[email protected]>"]
55
description = "The standard library of functions and flows for 'flow' programs"
66
license = "MIT"
@@ -27,8 +27,8 @@ default = []
2727
wasm = []
2828

2929
[dependencies]
30-
flowmacro = {path = "../flowmacro", version = "0.50.0" }
31-
flowcore = {path = "../flowcore", version = "0.50.0" }
30+
flowmacro = {path = "../flowmacro", version = "0.60.0" }
31+
flowcore = {path = "../flowcore", version = "0.60.0" }
3232
simpath = { version = "~2.3", features = ["urls"]}
3333
url = { version = "2.2", features = ["serde"] }
3434
serde_json = "1.0"

0 commit comments

Comments
 (0)