Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdavidmackenzie committed Aug 12, 2023
1 parent 3c5731f commit 130402a
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ default-members = ["flowc", "flowstdlib", "flowr", "flowcore", "flowmacro"]
resolver = "2"

[workspace.package]
version = "0.127.0"
version = "0.128.0"
authors = ["Andrew Mackenzie <andrew@mackenzie-serres.net>"]
license = "MIT"
license-file = "LICENSE"
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.127.0", features = ["context", "file_provider", "http_provider", "meta_provider"]}
flowcore = {path = "../flowcore", version = "0.128.0", features = ["context", "file_provider", "http_provider", "meta_provider"]}
clap = "~4"
env_logger = "0.10.0"
log = "0.4.19"
Expand All @@ -38,7 +38,7 @@ colored = "2"
toml = { version = "0.7.6" }

[dev-dependencies]
flowcore = {path = "../flowcore", version = "0.127.0", features = ["context"]}
flowcore = {path = "../flowcore", version = "0.128.0", features = ["context"]}
tempdir = "~0.3.5"
simpath = { version = "~2.5", features = ["urls"]}
serial_test = "2.0.0"
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 = "~2.0", features =["full"] } #Full is required for ItemFn in macro parsing
quote = "~1.0"
flowcore = {path = "../flowcore", version = "0.127.0" }
flowcore = {path = "../flowcore", version = "0.128.0" }
toml = "0.7.6"
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 @@ -29,9 +29,9 @@ submission = []
context = ["flowcore/context"]

[dependencies]
flowcore = {path = "../flowcore", version = "0.127.0", features = ["context", "file_provider", "http_provider",
flowcore = {path = "../flowcore", version = "0.128.0", features = ["context", "file_provider", "http_provider",
"context", "meta_provider"] }
flowstdlib = {path = "../flowstdlib", version = "0.127.0", optional = true }
flowstdlib = {path = "../flowstdlib", version = "0.128.0", optional = true }
clap = "~4"
log = "0.4.19"
env_logger = "0.10.0"
Expand Down Expand Up @@ -67,4 +67,4 @@ serial_test = "2.0.0"
portpicker = "0.1.1"
# These two are needed for examples
flowr-utilities = { path = "utilities" }
flowstdlib = {path = "../flowstdlib", version = "0.127.0" }
flowstdlib = {path = "../flowstdlib", version = "0.128.0" }
2 changes: 1 addition & 1 deletion flowr/utilities/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "flowr-utilities"
description = "A set of utilities for tests and examples"
version = "0.127.0"
version = "0.128.0"
readme = "README.md"
license = "MIT"
documentation = "https://github.com/andrewdavidmackenzie/flow/README.md"
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.127.0"
version = "0.128.0"
authors = ["Andrew Mackenzie <andrew@mackenzie-serres.net>"]
# Inherit the others that is not parsed by flowc
license.workspace = true
Expand All @@ -20,17 +20,17 @@ name = "flowstdlib"
path = "src/lib.rs"

[dependencies]
flowmacro = {path = "../flowmacro", version = "0.127.0" }
flowcore = {path = "../flowcore", version = "0.127.0" }
flowmacro = {path = "../flowmacro", version = "0.128.0" }
flowcore = {path = "../flowcore", version = "0.128.0" }
simpath = { version = "2", 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.127.0" }
flowmacro = {path = "../flowmacro", version = "0.127.0" }
flowcore = {path = "../flowcore", version = "0.128.0" }
flowmacro = {path = "../flowmacro", version = "0.128.0" }
serde_json = { version = "1.0", default-features = false }

[build-dependencies]
Expand Down

0 comments on commit 130402a

Please sign in to comment.