-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version numbers to 0.90.0 (#1560)
* 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
1 parent
acfcb06
commit 3137a37
Showing
13 changed files
with
30 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
@@ -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 } |