Skip to content

Commit

Permalink
Bump version numbers to 0.90.0 (#1560)
Browse files Browse the repository at this point in the history
* Bump version numbers to 0.90.0

* Revert "Bump version numbers to 0.90.0"

This reverts commit da93a00.

* Bump version numbers to 0.90.0
  • Loading branch information
andrewdavidmackenzie authored Nov 26, 2022
1 parent acfcb06 commit 3137a37
Show file tree
Hide file tree
Showing 13 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
license = "MIT"
documentation = "https://github.com/andrewdavidmackenzie/flow/README.md"
Expand Down
4 changes: 2 additions & 2 deletions 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.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"
Expand All @@ -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"
4 changes: 2 additions & 2 deletions flowc/tests/test-functions/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion flowmacro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
6 changes: 3 additions & 3 deletions flowr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions flowrex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
documentation = "https://github.com/andrewdavidmackenzie/flow/README.md"
Expand All @@ -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"
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.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"] }
Expand Down
4 changes: 2 additions & 2 deletions flowsamples/mandlebrot/escapes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions flowsamples/mandlebrot/pixel_to_point/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions flowsamples/mandlebrot/project/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions flowsamples/reverse-echo/reverse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
10 changes: 5 additions & 5 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.80.0"
version = "0.90.0"
authors = ["Andrew Mackenzie <[email protected]>"]
# Inherit the others that is not parsed by flowc
license.workspace = true
Expand Down Expand Up @@ -30,17 +30,17 @@ 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"
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]
Expand Down
6 changes: 3 additions & 3 deletions flowstdlib/src/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
license = "MIT"
documentation = "https://github.com/andrewdavidmackenzie/flow/README.md"
Expand All @@ -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 }

0 comments on commit 3137a37

Please sign in to comment.