Skip to content

Commit 9d63f12

Browse files
chore: bump version to 4.0.0 for all crates (#403)
1 parent 83a8fe5 commit 9d63f12

File tree

11 files changed

+34
-34
lines changed

11 files changed

+34
-34
lines changed

costs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grovedb-costs"
3-
version = "3.1.0"
3+
version = "4.0.0"
44
edition = "2021"
55
license = "MIT"
66
description = "Costs extension crate for GroveDB"

grovedb-element/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "grovedb-element"
33
description = "The storage element crate for grovedb"
4-
version = "3.1.0"
4+
version = "4.0.0"
55
authors = ["Samuel Westrich <sam@dash.org>"]
66
edition = "2021"
77
license = "MIT"
@@ -17,9 +17,9 @@ serde = { version = "1.0.228", features = ["derive"], optional = true }
1717
hex = "0.4.3"
1818
integer-encoding = "4.1.0"
1919
thiserror = "2.0.17"
20-
grovedb-version = { version = "3.1.0", path = "../grovedb-version" }
21-
grovedb-visualize = { version = "3.1.0", path = "../visualize", optional = true }
22-
grovedb-path = { version = "3.1.0", path = "../path" }
20+
grovedb-version = { version = "4.0.0", path = "../grovedb-version" }
21+
grovedb-visualize = { version = "4.0.0", path = "../visualize", optional = true }
22+
grovedb-path = { version = "4.0.0", path = "../path" }
2323

2424
[features]
2525
default = ["verify", "constructor"]

grovedb-epoch-based-storage-flags/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
name = "grovedb-epoch-based-storage-flags"
33
authors = ["Samuel Westrich <sam@dash.org>"]
44
description = "Epoch based storage flags for GroveDB"
5-
version = "3.1.0"
5+
version = "4.0.0"
66
edition = "2021"
77
license = "MIT"
88
repository = "https://github.com/dashpay/grovedb"
99

1010
[dependencies]
11-
grovedb-costs = { version = "3.1.0", path = "../costs" }
11+
grovedb-costs = { version = "4.0.0", path = "../costs" }
1212

1313
hex = { version = "0.4.3" }
1414
integer-encoding = { version = "4.1.0" }

grovedb-version/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "grovedb-version"
33
authors = ["Samuel Westrich <sam@dash.org>"]
44
description = "Versioning library for Platform"
5-
version = "3.1.0"
5+
version = "4.0.0"
66
edition = "2021"
77
license = "MIT"
88
repository = "https://github.com/dashpay/grovedb"

grovedb/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "grovedb"
33
description = "Fully featured database using balanced hierarchical authenticated data structures"
4-
version = "3.1.0"
4+
version = "4.0.0"
55
authors = ["Samuel Westrich <sam@dash.org>", "Wisdom Ogwu <wisdom@dash.org", "Evgeny Fomin <evgeny.fomin@dash.org>"]
66
edition = "2021"
77
license = "MIT"
@@ -11,14 +11,14 @@ readme = "../README.md"
1111
documentation = "https://docs.rs/grovedb"
1212

1313
[dependencies]
14-
grovedb-costs = { version = "3.1.0", path = "../costs" , optional = true }
15-
grovedbg-types = { version = "3.1.0", path = "../grovedbg-types", optional = true }
16-
grovedb-merk = { version = "3.1.0", path = "../merk", optional = true, default-features = false }
17-
grovedb-path = { version = "3.1.0", path = "../path" }
18-
grovedb-storage = { version = "3.1.0", path = "../storage", optional = true }
19-
grovedb-version = { version = "3.1.0", path = "../grovedb-version" }
20-
grovedb-visualize = { version = "3.1.0", path = "../visualize", optional = true }
21-
grovedb-element = { version = "3.1.0", path = "../grovedb-element" }
14+
grovedb-costs = { version = "4.0.0", path = "../costs" , optional = true }
15+
grovedbg-types = { version = "4.0.0", path = "../grovedbg-types", optional = true }
16+
grovedb-merk = { version = "4.0.0", path = "../merk", optional = true, default-features = false }
17+
grovedb-path = { version = "4.0.0", path = "../path" }
18+
grovedb-storage = { version = "4.0.0", path = "../storage", optional = true }
19+
grovedb-version = { version = "4.0.0", path = "../grovedb-version" }
20+
grovedb-visualize = { version = "4.0.0", path = "../visualize", optional = true }
21+
grovedb-element = { version = "4.0.0", path = "../grovedb-element" }
2222

2323
axum = { version = "0.8", features = ["macros"], optional = true }
2424
bincode = { version = "=2.0.0-rc.3" }
@@ -38,7 +38,7 @@ zip-extensions = { version = "0.13.0", optional = true }
3838
serde = { version = "1.0.219", features = ["derive"], optional = true }
3939

4040
[dev-dependencies]
41-
grovedb-epoch-based-storage-flags = { version = "3.1.0", path = "../grovedb-epoch-based-storage-flags" }
41+
grovedb-epoch-based-storage-flags = { version = "4.0.0", path = "../grovedb-epoch-based-storage-flags" }
4242

4343
criterion = "0.5.1"
4444
hex = "0.4.3"

grovedbg-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grovedbg-types"
3-
version = "3.1.0"
3+
version = "4.0.0"
44
edition = "2021"
55
description = "Common type definitions for data exchange over GroveDBG protocol"
66
authors = ["Evgeny Fomin <evgeny.fomin@dash.org>"]

merk/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "grovedb-merk"
33
description = "Merkle key/value store adapted for GroveDB"
4-
version = "3.1.0"
4+
version = "4.0.0"
55
authors = ["Samuel Westrich <sam@dash.org>", "Wisdom Ogwu <wisdom@dash.org", "Evgeny Fomin <evgeny.fomin@dash.org>", "Matt Bell <mappum@gmail.com>"]
66
edition = "2021"
77
license = "MIT"
@@ -11,12 +11,12 @@ readme = "README.md"
1111
documentation = "https://docs.rs/grovedb-merk"
1212

1313
[dependencies]
14-
grovedb-costs = { version = "3.1.0", path = "../costs" }
15-
grovedb-path = { version = "3.1.0", path = "../path" }
16-
grovedb-storage = { version = "3.1.0", path = "../storage", optional = true }
17-
grovedb-version = { version = "3.1.0", path = "../grovedb-version" }
18-
grovedb-visualize = { version = "3.1.0", path = "../visualize" }
19-
grovedb-element = { version = "3.1.0", path = "../grovedb-element" }
14+
grovedb-costs = { version = "4.0.0", path = "../costs" }
15+
grovedb-path = { version = "4.0.0", path = "../path" }
16+
grovedb-storage = { version = "4.0.0", path = "../storage", optional = true }
17+
grovedb-version = { version = "4.0.0", path = "../grovedb-version" }
18+
grovedb-visualize = { version = "4.0.0", path = "../visualize" }
19+
grovedb-element = { version = "4.0.0", path = "../grovedb-element" }
2020

2121
bincode = { version = "=2.0.0-rc.3" }
2222
bincode_derive = { version = "=2.0.0-rc.3" }

node-grove/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ exclude = ["index.node"]
1010
crate-type = ["cdylib"]
1111

1212
[dependencies]
13-
grovedb = { version = "3.1.0", path = "../grovedb", features = ["full", "estimated_costs"] }
14-
grovedb-version = { version = "3.1.0", path = "../grovedb-version" }
13+
grovedb = { version = "4.0.0", path = "../grovedb", features = ["full", "estimated_costs"] }
14+
grovedb-version = { version = "4.0.0", path = "../grovedb-version" }
1515

1616
[dependencies.neon]
1717
version = "0.10.1"

path/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grovedb-path"
3-
version = "3.1.0"
3+
version = "4.0.0"
44
edition = "2021"
55
license = "MIT"
66
description = "Path extension crate for GroveDB"

storage/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grovedb-storage"
3-
version = "3.1.0"
3+
version = "4.0.0"
44
edition = "2021"
55
license = "MIT"
66
description = "Storage extension crate for GroveDB"
@@ -9,9 +9,9 @@ documentation = "https://docs.rs/grovedb-storage"
99
repository = "https://github.com/dashpay/grovedb"
1010

1111
[dependencies]
12-
grovedb-costs = { version = "3.1.0", path = "../costs" }
13-
grovedb-path = { version = "3.1.0", path = "../path" }
14-
grovedb-visualize = { version = "3.1.0", path = "../visualize" }
12+
grovedb-costs = { version = "4.0.0", path = "../costs" }
13+
grovedb-path = { version = "4.0.0", path = "../path" }
14+
grovedb-visualize = { version = "4.0.0", path = "../visualize" }
1515

1616
blake3 = { version = "1.8.1", optional = true }
1717
hex = "0.4.3"

0 commit comments

Comments
 (0)