Skip to content

Commit

Permalink
chore: bump version to 2.0.3 (#338)
Browse files Browse the repository at this point in the history
* chore: version bump to v2.0.1

* bump to 2.0.3
  • Loading branch information
QuantumExplorer authored Aug 29, 2024
1 parent 07a53b7 commit c205adb
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion costs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grovedb-costs"
version = "2.0.1"
version = "2.0.3"
edition = "2021"
license = "MIT"
description = "Costs extension crate for GroveDB"
Expand Down
4 changes: 2 additions & 2 deletions grovedb-epoch-based-storage-flags/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
name = "grovedb-epoch-based-storage-flags"
authors = ["Samuel Westrich <sam@dash.org>"]
description = "Epoch based storage flags for GroveDB"
version = "2.0.1"
version = "2.0.3"
edition = "2021"
license = "MIT"
repository = "https://github.com/dashpay/grovedb"

[dependencies]
thiserror = { version = "1.0.63" }
grovedb-costs = { version = "2.0.0", path = "../costs" }
grovedb-costs = { version = "2.0.3", path = "../costs" }
intmap = { version = "2.0.0", features = ["serde"]}
integer-encoding = { version = "4.0.0" }
hex = { version = "0.4.3" }
2 changes: 1 addition & 1 deletion grovedb-version/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "grovedb-version"
authors = ["Samuel Westrich <sam@dash.org>"]
description = "Versioning library for Platform"
version = "2.0.1"
version = "2.0.3"
edition = "2021"
license = "MIT"
repository = "https://github.com/dashpay/grovedb"
Expand Down
18 changes: 9 additions & 9 deletions grovedb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "grovedb"
description = "Fully featured database using balanced hierarchical authenticated data structures"
version = "2.0.1"
version = "2.0.3"
authors = ["Samuel Westrich <sam@dash.org>", "Wisdom Ogwu <wisdom@dash.org", "Evgeny Fomin <evgeny.fomin@dash.org>"]
edition = "2021"
license = "MIT"
Expand All @@ -11,36 +11,36 @@ readme = "../README.md"
documentation = "https://docs.rs/grovedb"

[dependencies]
grovedb-merk = { version = "2.0.0", path = "../merk", optional = true, default-features = false }
grovedb-merk = { version = "2.0.3", path = "../merk", optional = true, default-features = false }
thiserror = { version = "1.0.59", optional = true }
tempfile = { version = "3.10.1", optional = true }
bincode = { version = "2.0.0-rc.3" }
grovedb-storage = { version = "2.0.0", path = "../storage", optional = true }
grovedb-visualize = { version = "2.0.0", path = "../visualize", optional = true }
grovedb-storage = { version = "2.0.3", path = "../storage", optional = true }
grovedb-visualize = { version = "2.0.3", path = "../visualize", optional = true }
hex = "0.4.3"
itertools = { version = "0.12.1", optional = true }
derive_more = "0.99.18"
integer-encoding = { version = "4.0.0", optional = true }
grovedb-costs = { version = "2.0.0", path = "../costs" , optional = true }
grovedb-costs = { version = "2.0.3", path = "../costs" , optional = true }
nohash-hasher = { version = "0.2.0", optional = true }
indexmap = "2.2.6"
intmap = { version = "2.0.0", optional = true }
grovedb-path = { version = "2.0.0", path = "../path" }
grovedbg-types = { version = "2.0.0", path = "../grovedbg-types", optional = true }
grovedb-path = { version = "2.0.3", path = "../path" }
grovedbg-types = { version = "2.0.3", path = "../grovedbg-types", optional = true }
tokio = { version = "1.37.0", features = ["rt-multi-thread", "net"], optional = true }
axum = { version = "0.7.5", features = ["macros"], optional = true }
tower-http = { version = "0.5.2", features = ["fs"], optional = true }
blake3 = "1.4.0"
bitvec = "1"
zip-extensions = { version ="0.6.2", optional = true }
grovedb-version = { path = "../grovedb-version", version = "2.0.0" }
grovedb-version = { path = "../grovedb-version", version = "2.0.3" }

[dev-dependencies]
rand = "0.8.5"
criterion = "0.5.1"
hex = "0.4.3"
pretty_assertions = "1.4.0"
grovedb-epoch-based-storage-flags = { version = "2.0.0", path = "../grovedb-epoch-based-storage-flags" }
grovedb-epoch-based-storage-flags = { version = "2.0.3", path = "../grovedb-epoch-based-storage-flags" }

[[bench]]
name = "insertion_benchmark"
Expand Down
2 changes: 1 addition & 1 deletion grovedbg-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grovedbg-types"
version = "2.0.1"
version = "2.0.3"
edition = "2021"
description = "Common type definitions for data exchange over GroveDBG protocol"
authors = ["Evgeny Fomin <evgeny.fomin@dash.org>"]
Expand Down
12 changes: 6 additions & 6 deletions merk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "grovedb-merk"
description = "Merkle key/value store adapted for GroveDB"
version = "2.0.1"
version = "2.0.3"
authors = ["Samuel Westrich <sam@dash.org>", "Wisdom Ogwu <wisdom@dash.org", "Evgeny Fomin <evgeny.fomin@dash.org>", "Matt Bell <mappum@gmail.com>"]
edition = "2021"
license = "MIT"
Expand All @@ -13,15 +13,15 @@ documentation = "https://docs.rs/grovedb-merk"
[dependencies]
thiserror = "1.0.58"
bincode = { version = "2.0.0-rc.3" }
grovedb-storage = { version = "2.0.0", path = "../storage", optional = true }
grovedb-storage = { version = "2.0.3", path = "../storage", optional = true }
failure = "0.1.8"
integer-encoding = "4.0.0"
indexmap = "2.2.6"
grovedb-costs = { version = "2.0.0" , path = "../costs" }
grovedb-visualize = { version = "2.0.0", path = "../visualize" }
grovedb-path = { version = "2.0.0", path = "../path" }
grovedb-costs = { version = "2.0.3" , path = "../costs" }
grovedb-visualize = { version = "2.0.3", path = "../visualize" }
grovedb-path = { version = "2.0.3", path = "../path" }
hex = "0.4.3"
grovedb-version = { version = "2.0.0", path = "../grovedb-version" }
grovedb-version = { version = "2.0.3", path = "../grovedb-version" }

[dependencies.time]
version = "0.3.34"
Expand Down
2 changes: 1 addition & 1 deletion node-grove/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ crate-type = ["cdylib"]

[dependencies]
grovedb = { path = "../grovedb", features = ["full", "estimated_costs"] }
grovedb-version = { path = "../grovedb-version", version = "2.0.0" }
grovedb-version = { path = "../grovedb-version", version = "2.0.3" }

[dependencies.neon]
version = "0.10.1"
Expand Down
2 changes: 1 addition & 1 deletion path/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grovedb-path"
version = "2.0.1"
version = "2.0.3"
edition = "2021"
license = "MIT"
description = "Path extension crate for GroveDB"
Expand Down
8 changes: 4 additions & 4 deletions storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grovedb-storage"
version = "2.0.1"
version = "2.0.3"
edition = "2021"
license = "MIT"
description = "Storage extension crate for GroveDB"
Expand All @@ -14,13 +14,13 @@ num_cpus = { version = "1.16.0", optional = true }
tempfile = { version = "3.10.1", optional = true }
blake3 = { version = "1.5.1", optional = true }
integer-encoding = { version = "4.0.0", optional = true }
grovedb-visualize = { version = "2.0.0", path = "../visualize" }
grovedb-visualize = { version = "2.0.3", path = "../visualize" }
strum = { version = "0.26.2", features = ["derive"] }
grovedb-costs = { version = "2.0.0", path = "../costs" }
grovedb-costs = { version = "2.0.3", path = "../costs" }
thiserror = "1.0.59"
rocksdb = { version = "0.22.0", optional = true }
hex = "0.4.3"
grovedb-path = { version = "2.0.0", path = "../path" }
grovedb-path = { version = "2.0.3", path = "../path" }

[features]
rocksdb_storage = ["rocksdb", "num_cpus", "lazy_static", "tempfile", "blake3", "integer-encoding"]
2 changes: 1 addition & 1 deletion visualize/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grovedb-visualize"
version = "2.0.1"
version = "2.0.3"
edition = "2021"
license = "MIT"
description = "Debug prints extension crate for GroveDB"
Expand Down

0 comments on commit c205adb

Please sign in to comment.