Skip to content

Commit 7cc659c

Browse files
chore: Release
1 parent 2a2fa02 commit 7cc659c

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ default-members = ["flowc", "flowstdlib", "flowr", "flowcore", "flowmacro"]
44
resolver = "2"
55

66
[workspace.package]
7-
version = "0.133.0"
7+
version = "0.134.0"
88
authors = ["Andrew Mackenzie <[email protected]>"]
99
license = "MIT"
1010
license-file = "LICENSE"

flowc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ default = ["debugger"]
2626
debugger = ["flowcore/debugger"] # feature to add output for the debugger
2727

2828
[dependencies]
29-
flowcore = {path = "../flowcore", version = "0.133.0", features = ["context", "file_provider", "http_provider", "meta_provider"]}
29+
flowcore = {path = "../flowcore", version = "0.134.0", features = ["context", "file_provider", "http_provider", "meta_provider"]}
3030
clap = "~4"
3131
env_logger = "0.10.0"
3232
log = "0.4.20"
@@ -42,7 +42,7 @@ colored = "2"
4242
toml = { version = "0.8.0" }
4343

4444
[dev-dependencies]
45-
flowcore = {path = "../flowcore", version = "0.133.0", features = ["context"]}
45+
flowcore = {path = "../flowcore", version = "0.134.0", features = ["context"]}
4646
tempdir = "~0.3.5"
4747
simpath = { version = "~2.5", features = ["urls"]}
4848
serial_test = "2.0.0"

flowmacro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ proc-macro = true
1919
[dependencies]
2020
syn = { version = "~2.0", features =["full"] } #Full is required for ItemFn in macro parsing
2121
quote = "~1.0"
22-
flowcore = {path = "../flowcore", version = "0.133.0" }
22+
flowcore = {path = "../flowcore", version = "0.134.0" }
2323
toml = "0.8.0"
2424
proc-macro2 = "1.0"
2525

flowr/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ submission = []
4141
context = ["flowcore/context"]
4242

4343
[dependencies]
44-
flowcore = {path = "../flowcore", version = "0.133.0", features = ["context", "file_provider", "http_provider",
44+
flowcore = {path = "../flowcore", version = "0.134.0", features = ["context", "file_provider", "http_provider",
4545
"context", "meta_provider"] }
46-
flowstdlib = {path = "../flowstdlib", version = "0.133.0", optional = true }
46+
flowstdlib = {path = "../flowstdlib", version = "0.134.0", optional = true }
4747
clap = "~4"
4848
log = "0.4.20"
4949
env_logger = "0.10.0"
@@ -79,4 +79,4 @@ serial_test = "2.0.0"
7979
portpicker = "0.1.1"
8080
# These two are needed for examples
8181
flowr-utilities = { path = "utilities" }
82-
flowstdlib = {path = "../flowstdlib", version = "0.133.0" }
82+
flowstdlib = {path = "../flowstdlib", version = "0.134.0" }

flowr/utilities/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "flowr-utilities"
33
description = "A set of utilities for tests and examples"
4-
version = "0.133.0"
4+
version = "0.134.0"
55
readme = "README.md"
66
license = "MIT"
77
documentation = "https://github.com/andrewdavidmackenzie/flow/README.md"

flowstdlib/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Don't inherit from workspace as this is parsed by flowc for MetaData and it is not workspace inheritance aware
33
name = "flowstdlib"
44
description = "The standard library of functions and flows for 'flow' programs"
5-
version = "0.133.0"
5+
version = "0.134.0"
66
authors = ["Andrew Mackenzie <[email protected]>"]
77
# Inherit the others that is not parsed by flowc
88
license.workspace = true
@@ -20,17 +20,17 @@ name = "flowstdlib"
2020
path = "src/lib.rs"
2121

2222
[dependencies]
23-
flowmacro = {path = "../flowmacro", version = "0.133.0" }
24-
flowcore = {path = "../flowcore", version = "0.133.0" }
23+
flowmacro = {path = "../flowmacro", version = "0.134.0" }
24+
flowcore = {path = "../flowcore", version = "0.134.0" }
2525
simpath = { version = "2", features = ["urls"]}
2626
url = { version = "2.2", features = ["serde"] }
2727
serde_json = "1.0"
2828
error-chain = "0.12.2"
2929

3030
[dev-dependencies]
3131
tempdir = "~0.3.5"
32-
flowcore = {path = "../flowcore", version = "0.133.0" }
33-
flowmacro = {path = "../flowmacro", version = "0.133.0" }
32+
flowcore = {path = "../flowcore", version = "0.134.0" }
33+
flowmacro = {path = "../flowmacro", version = "0.134.0" }
3434
serde_json = { version = "1.0", default-features = false }
3535

3636
[build-dependencies]

0 commit comments

Comments
 (0)