Skip to content

Commit c205adb

Browse files
chore: bump version to 2.0.3 (#338)
* chore: version bump to v2.0.1 * bump to 2.0.3
1 parent 07a53b7 commit c205adb

File tree

10 files changed

+27
-27
lines changed

10 files changed

+27
-27
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.0.1"
3+
version = "2.0.3"
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,14 +2,14 @@
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.0.1"
5+
version = "2.0.3"
66
edition = "2021"
77
license = "MIT"
88
repository = "https://github.com/dashpay/grovedb"
99

1010
[dependencies]
1111
thiserror = { version = "1.0.63" }
12-
grovedb-costs = { version = "2.0.0", path = "../costs" }
12+
grovedb-costs = { version = "2.0.3", path = "../costs" }
1313
intmap = { version = "2.0.0", features = ["serde"]}
1414
integer-encoding = { version = "4.0.0" }
1515
hex = { version = "0.4.3" }

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.0.1"
5+
version = "2.0.3"
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.0.1"
4+
version = "2.0.3"
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,36 +11,36 @@ readme = "../README.md"
1111
documentation = "https://docs.rs/grovedb"
1212

1313
[dependencies]
14-
grovedb-merk = { version = "2.0.0", path = "../merk", optional = true, default-features = false }
14+
grovedb-merk = { version = "2.0.3", path = "../merk", optional = true, default-features = false }
1515
thiserror = { version = "1.0.59", optional = true }
1616
tempfile = { version = "3.10.1", optional = true }
1717
bincode = { version = "2.0.0-rc.3" }
18-
grovedb-storage = { version = "2.0.0", path = "../storage", optional = true }
19-
grovedb-visualize = { version = "2.0.0", path = "../visualize", optional = true }
18+
grovedb-storage = { version = "2.0.3", path = "../storage", optional = true }
19+
grovedb-visualize = { version = "2.0.3", path = "../visualize", optional = true }
2020
hex = "0.4.3"
2121
itertools = { version = "0.12.1", optional = true }
2222
derive_more = "0.99.18"
2323
integer-encoding = { version = "4.0.0", optional = true }
24-
grovedb-costs = { version = "2.0.0", path = "../costs" , optional = true }
24+
grovedb-costs = { version = "2.0.3", path = "../costs" , optional = true }
2525
nohash-hasher = { version = "0.2.0", optional = true }
2626
indexmap = "2.2.6"
2727
intmap = { version = "2.0.0", optional = true }
28-
grovedb-path = { version = "2.0.0", path = "../path" }
29-
grovedbg-types = { version = "2.0.0", path = "../grovedbg-types", optional = true }
28+
grovedb-path = { version = "2.0.3", path = "../path" }
29+
grovedbg-types = { version = "2.0.3", path = "../grovedbg-types", optional = true }
3030
tokio = { version = "1.37.0", features = ["rt-multi-thread", "net"], optional = true }
3131
axum = { version = "0.7.5", features = ["macros"], optional = true }
3232
tower-http = { version = "0.5.2", features = ["fs"], optional = true }
3333
blake3 = "1.4.0"
3434
bitvec = "1"
3535
zip-extensions = { version ="0.6.2", optional = true }
36-
grovedb-version = { path = "../grovedb-version", version = "2.0.0" }
36+
grovedb-version = { path = "../grovedb-version", version = "2.0.3" }
3737

3838
[dev-dependencies]
3939
rand = "0.8.5"
4040
criterion = "0.5.1"
4141
hex = "0.4.3"
4242
pretty_assertions = "1.4.0"
43-
grovedb-epoch-based-storage-flags = { version = "2.0.0", path = "../grovedb-epoch-based-storage-flags" }
43+
grovedb-epoch-based-storage-flags = { version = "2.0.3", path = "../grovedb-epoch-based-storage-flags" }
4444

4545
[[bench]]
4646
name = "insertion_benchmark"

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.0.1"
3+
version = "2.0.3"
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.0.1"
4+
version = "2.0.3"
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"
@@ -13,15 +13,15 @@ documentation = "https://docs.rs/grovedb-merk"
1313
[dependencies]
1414
thiserror = "1.0.58"
1515
bincode = { version = "2.0.0-rc.3" }
16-
grovedb-storage = { version = "2.0.0", path = "../storage", optional = true }
16+
grovedb-storage = { version = "2.0.3", path = "../storage", optional = true }
1717
failure = "0.1.8"
1818
integer-encoding = "4.0.0"
1919
indexmap = "2.2.6"
20-
grovedb-costs = { version = "2.0.0" , path = "../costs" }
21-
grovedb-visualize = { version = "2.0.0", path = "../visualize" }
22-
grovedb-path = { version = "2.0.0", path = "../path" }
20+
grovedb-costs = { version = "2.0.3" , path = "../costs" }
21+
grovedb-visualize = { version = "2.0.3", path = "../visualize" }
22+
grovedb-path = { version = "2.0.3", path = "../path" }
2323
hex = "0.4.3"
24-
grovedb-version = { version = "2.0.0", path = "../grovedb-version" }
24+
grovedb-version = { version = "2.0.3", path = "../grovedb-version" }
2525

2626
[dependencies.time]
2727
version = "0.3.34"

node-grove/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ crate-type = ["cdylib"]
1111

1212
[dependencies]
1313
grovedb = { path = "../grovedb", features = ["full", "estimated_costs"] }
14-
grovedb-version = { path = "../grovedb-version", version = "2.0.0" }
14+
grovedb-version = { path = "../grovedb-version", version = "2.0.3" }
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.0.1"
3+
version = "2.0.3"
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.0.1"
3+
version = "2.0.3"
44
edition = "2021"
55
license = "MIT"
66
description = "Storage extension crate for GroveDB"
@@ -14,13 +14,13 @@ num_cpus = { version = "1.16.0", optional = true }
1414
tempfile = { version = "3.10.1", optional = true }
1515
blake3 = { version = "1.5.1", optional = true }
1616
integer-encoding = { version = "4.0.0", optional = true }
17-
grovedb-visualize = { version = "2.0.0", path = "../visualize" }
17+
grovedb-visualize = { version = "2.0.3", path = "../visualize" }
1818
strum = { version = "0.26.2", features = ["derive"] }
19-
grovedb-costs = { version = "2.0.0", path = "../costs" }
19+
grovedb-costs = { version = "2.0.3", path = "../costs" }
2020
thiserror = "1.0.59"
2121
rocksdb = { version = "0.22.0", optional = true }
2222
hex = "0.4.3"
23-
grovedb-path = { version = "2.0.0", path = "../path" }
23+
grovedb-path = { version = "2.0.3", path = "../path" }
2424

2525
[features]
2626
rocksdb_storage = ["rocksdb", "num_cpus", "lazy_static", "tempfile", "blake3", "integer-encoding"]

visualize/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-visualize"
3-
version = "2.0.1"
3+
version = "2.0.3"
44
edition = "2021"
55
license = "MIT"
66
description = "Debug prints extension crate for GroveDB"

0 commit comments

Comments
 (0)