Skip to content

Commit fd558b7

Browse files
committed
Bump workspace version to 0.8.0
1 parent 37a3478 commit fd558b7

22 files changed

Lines changed: 109 additions & 109 deletions

File tree

Cargo.lock

Lines changed: 20 additions & 20 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
@@ -24,7 +24,7 @@ members = [
2424
]
2525

2626
[workspace.package]
27-
version = "0.7.1"
27+
version = "0.8.0"
2828
edition = "2021"
2929
license = "Apache-2.0"
3030
authors = ["Sam Hart"]

crates/babel/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ workspace = true
1414

1515
[dependencies]
1616
bincode = { workspace = true }
17-
jacquard-host-support = { path = "../host-support", version = "0.7.1" }
18-
jacquard-core = { path = "../core", version = "0.7.1" }
19-
jacquard-traits = { path = "../traits", version = "0.7.1" }
17+
jacquard-host-support = { path = "../host-support", version = "0.8.0" }
18+
jacquard-core = { path = "../core", version = "0.8.0" }
19+
jacquard-traits = { path = "../traits", version = "0.8.0" }
2020
serde = { workspace = true, default-features = false }
2121

2222
[dev-dependencies]

crates/batman-bellman/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ workspace = true
1414

1515
[dependencies]
1616
bincode = { workspace = true }
17-
jacquard-host-support = { path = "../host-support", version = "0.7.1" }
18-
jacquard-core = { path = "../core", version = "0.7.1" }
19-
jacquard-traits = { path = "../traits", version = "0.7.1" }
17+
jacquard-host-support = { path = "../host-support", version = "0.8.0" }
18+
jacquard-core = { path = "../core", version = "0.8.0" }
19+
jacquard-traits = { path = "../traits", version = "0.8.0" }
2020
serde = { workspace = true, default-features = false }
2121

2222
[dev-dependencies]

crates/batman-classic/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ workspace = true
1414

1515
[dependencies]
1616
bincode = { workspace = true }
17-
jacquard-host-support = { path = "../host-support", version = "0.7.1" }
18-
jacquard-core = { path = "../core", version = "0.7.1" }
19-
jacquard-traits = { path = "../traits", version = "0.7.1" }
17+
jacquard-host-support = { path = "../host-support", version = "0.8.0" }
18+
jacquard-core = { path = "../core", version = "0.8.0" }
19+
jacquard-traits = { path = "../traits", version = "0.8.0" }
2020
serde = { workspace = true, default-features = false }
2121

2222
[dev-dependencies]

crates/cast-support/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ description = "Deterministic cast support helpers for Jacquard transport profile
1313
workspace = true
1414

1515
[dependencies]
16-
jacquard-core = { path = "../core", version = "0.7.1" }
16+
jacquard-core = { path = "../core", version = "0.8.0" }
1717
serde = { workspace = true, default-features = false }

crates/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ description = "Shared identifiers, types, and constants for Jacquard routing"
1313
workspace = true
1414

1515
[dependencies]
16-
jacquard-macros = { path = "../macros", version = "0.7.1" }
16+
jacquard-macros = { path = "../macros", version = "0.8.0" }
1717
serde = { workspace = true, default-features = false }
1818
thiserror = { workspace = true }
1919

crates/field/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ workspace = true
1616
default = []
1717

1818
[dependencies]
19-
jacquard-core = { path = "../core", version = "0.7.1" }
20-
jacquard-traits = { path = "../traits", version = "0.7.1" }
19+
jacquard-core = { path = "../core", version = "0.8.0" }
20+
jacquard-traits = { path = "../traits", version = "0.8.0" }
2121
cfg-if = { workspace = true }
2222
serde = { workspace = true, default-features = false }
2323
serde_json = { workspace = true }

crates/host-support/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ description = "Reusable host-support primitives for Jacquard transport/profile i
1313
workspace = true
1414

1515
[dependencies]
16-
jacquard-core = { path = "../core", version = "0.7.1" }
17-
jacquard-macros = { path = "../macros", version = "0.7.1" }
16+
jacquard-core = { path = "../core", version = "0.8.0" }
17+
jacquard-macros = { path = "../macros", version = "0.8.0" }
1818
cfg-if = { workspace = true }
1919
serde = { workspace = true, default-features = false }

crates/mem-link-profile/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ description = "In-memory link profile and carrier implementations for Jacquard t
1313
workspace = true
1414

1515
[dependencies]
16-
jacquard-cast-support = { path = "../cast-support", version = "0.7.1" }
17-
jacquard-host-support = { path = "../host-support", version = "0.7.1" }
18-
jacquard-core = { path = "../core", version = "0.7.1" }
19-
jacquard-traits = { path = "../traits", version = "0.7.1" }
16+
jacquard-cast-support = { path = "../cast-support", version = "0.8.0" }
17+
jacquard-host-support = { path = "../host-support", version = "0.8.0" }
18+
jacquard-core = { path = "../core", version = "0.8.0" }
19+
jacquard-traits = { path = "../traits", version = "0.8.0" }
2020
serde = { workspace = true, default-features = false }
2121

2222
[dev-dependencies]

0 commit comments

Comments
 (0)