Skip to content

Commit fd0d0a1

Browse files
fix: fix sub tree prefix and go to version 2.2.1 (#352)
* fix: fix sub tree prefix and go to version 2.2.1 * fix: fix sub tree prefix and go to version 2.2.1 * fix * fix * fix
1 parent c24eea2 commit fd0d0a1

File tree

13 files changed

+31
-33
lines changed

13 files changed

+31
-33
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 = "2.2.0"
3+
version = "2.2.1"
44
edition = "2021"
55
license = "MIT"
66
description = "Costs extension crate for GroveDB"

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 = "2.2.0"
5+
version = "2.2.1"
66
edition = "2021"
77
license = "MIT"
88
repository = "https://github.com/dashpay/grovedb"
99

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

1313
hex = { version = "0.4.3" }
1414
integer-encoding = { version = "4.0.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 = "2.2.0"
5+
version = "2.2.1"
66
edition = "2021"
77
license = "MIT"
88
repository = "https://github.com/dashpay/grovedb"

grovedb/Cargo.toml

Lines changed: 9 additions & 9 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 = "2.2.0"
4+
version = "2.2.1"
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,13 +11,13 @@ readme = "../README.md"
1111
documentation = "https://docs.rs/grovedb"
1212

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

2222
axum = { version = "=0.7.5", features = ["macros"], optional = true }
2323
bincode = { version = "2.0.0-rc.3" }
@@ -36,7 +36,7 @@ zip-extensions = { version = "0.8.1", optional = true }
3636
serde = { version = "1.0.210", features = ["derive"], optional = true }
3737

3838
[dev-dependencies]
39-
grovedb-epoch-based-storage-flags = { version = "2.2.0", path = "../grovedb-epoch-based-storage-flags" }
39+
grovedb-epoch-based-storage-flags = { version = "2.2.1", path = "../grovedb-epoch-based-storage-flags" }
4040

4141
criterion = "0.5.1"
4242
hex = "0.4.3"

grovedb/src/replication/state_sync_session.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use super::{
2222
};
2323
use crate::{replication, Element, Error, GroveDb, Transaction};
2424

25-
pub(crate) type SubtreePrefix = [u8; blake3::OUT_LEN];
25+
pub(crate) type SubtreePrefix = [u8; 32];
2626

2727
/// Struct governing the state synchronization of one subtree.
2828
struct SubtreeStateSyncInfo<'db> {

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 = "2.2.0"
3+
version = "2.2.1"
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: 6 additions & 6 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 = "2.2.0"
4+
version = "2.2.1"
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,11 +11,11 @@ readme = "README.md"
1111
documentation = "https://docs.rs/grovedb-merk"
1212

1313
[dependencies]
14-
grovedb-costs = { version = "2.2.0" , path = "../costs" }
15-
grovedb-path = { version = "2.2.0", path = "../path" }
16-
grovedb-storage = { version = "2.2.0", path = "../storage", optional = true }
17-
grovedb-version = { version = "2.2.0", path = "../grovedb-version" }
18-
grovedb-visualize = { version = "2.2.0", path = "../visualize" }
14+
grovedb-costs = { version = "2.2.1" , path = "../costs" }
15+
grovedb-path = { version = "2.2.1", path = "../path" }
16+
grovedb-storage = { version = "2.2.1", path = "../storage", optional = true }
17+
grovedb-version = { version = "2.2.1", path = "../grovedb-version" }
18+
grovedb-visualize = { version = "2.2.1", path = "../visualize" }
1919

2020
bincode = { version = "2.0.0-rc.3" }
2121
hex = "0.4.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 = "2.2.0", path = "../grovedb", features = ["full", "estimated_costs"] }
14-
grovedb-version = { version = "2.2.0", path = "../grovedb-version" }
13+
grovedb = { version = "2.2.1", path = "../grovedb", features = ["full", "estimated_costs"] }
14+
grovedb-version = { version = "2.2.1", 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 = "2.2.0"
3+
version = "2.2.1"
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 = "2.2.0"
3+
version = "2.2.1"
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 = "2.2.0", path = "../costs" }
13-
grovedb-path = { version = "2.2.0", path = "../path" }
14-
grovedb-visualize = { version = "2.2.0", path = "../visualize" }
12+
grovedb-costs = { version = "2.2.1", path = "../costs" }
13+
grovedb-path = { version = "2.2.1", path = "../path" }
14+
grovedb-visualize = { version = "2.2.1", path = "../visualize" }
1515

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

0 commit comments

Comments
 (0)