Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update versions to 1.0.0 #324

Merged
merged 1 commit into from
Jul 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = "1.0.0-rc.2"
version = "1.0.0"
edition = "2021"
license = "MIT"
description = "Costs extension crate for GroveDB"
Expand Down
6 changes: 3 additions & 3 deletions grovedb-version/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
name = "grovedb-version"
authors = ["Samuel Westrich <sam@dash.org>"]
description = "Versioning library for Platform"
version = "1.0.0-rc.2"
version = "1.0.0"
edition = "2021"
license = "MIT"

[dependencies]
thiserror = { version = "1.0.59" }
versioned-feature-core = { git = "https://github.com/dashpay/versioned-feature-core", version = "1.0.0" }
thiserror = "1.0.59"
versioned-feature-core = "1.0.0"

[features]
mock-versions = []
22 changes: 11 additions & 11 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 = "1.0.0-rc.2"
version = "1.0.0"
authors = ["Samuel Westrich <sam@dash.org>", "Wisdom Ogwu <wisdom@dash.org", "Evgeny Fomin <evgeny.fomin@dash.org>"]
edition = "2021"
license = "MIT"
Expand All @@ -11,29 +11,29 @@ readme = "../README.md"
documentation = "https://docs.rs/grovedb"

[dependencies]
grovedb-merk = { version = "1.0.0-rc.2", path = "../merk", optional = true, default-features = false }
grovedb-merk = { version = "1.0.0", 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 = "1.0.0-rc.2", path = "../storage", optional = true }
grovedb-visualize = { version = "1.0.0-rc.2", path = "../visualize", optional = true }
hex = { version = "0.4.3"}
grovedb-storage = { version = "1.0.0", path = "../storage", optional = true }
grovedb-visualize = { version = "1.0.0", path = "../visualize", optional = true }
hex = "0.4.3"
itertools = { version = "0.12.1", optional = true }
derive_more = { version = "0.99.18" }
derive_more = "0.99.18"
integer-encoding = { version = "4.0.0", optional = true }
grovedb-costs = { version = "1.0.0-rc.2", path = "../costs", optional = true }
grovedb-costs = { version = "1.0.0", path = "../costs", optional = true }
nohash-hasher = { version = "0.2.0", optional = true }
indexmap = { version = "2.2.6"}
indexmap = "2.2.6"
intmap = { version = "2.0.0", optional = true }
grovedb-path = { version = "1.0.0-rc.2", path = "../path" }
grovedbg-types = { version = "1.0.0-rc.2", path = "../grovedbg-types", optional = true }
grovedb-path = { version = "1.0.0", path = "../path" }
grovedbg-types = { version = "1.0.0", 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 = "1.0.0-rc.2"
grovedb-version = { path = "../grovedb-version", version = "1.0.0" }

[dev-dependencies]
rand = "0.8.5"
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 = "1.0.0-rc.2"
version = "1.0.0"
edition = "2021"
description = "Common type definitions for data exchange over GroveDBG protocol"
authors = ["Evgeny Fomin <evgeny.fomin@dash.org>"]
Expand Down
14 changes: 7 additions & 7 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 = "1.0.0-rc.2"
version = "1.0.0"
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 @@ -12,15 +12,15 @@ documentation = "https://docs.rs/grovedb-merk"

[dependencies]
thiserror = "1.0.58"
grovedb-storage = { version = "1.0.0-rc.2", path = "../storage", optional = true }
grovedb-storage = { version = "1.0.0", path = "../storage", optional = true }
failure = "0.1.8"
integer-encoding = "4.0.0"
indexmap = "2.2.6"
grovedb-costs = { version = "1.0.0-rc.2", path = "../costs" }
grovedb-visualize = { version = "1.0.0-rc.2", path = "../visualize" }
grovedb-path = { version = "1.0.0-rc.2", path = "../path" }
hex = { version = "0.4.3" }
grovedb-version = "1.0.0-rc.2"
grovedb-costs = { version = "1.0.0", path = "../costs" }
grovedb-visualize = { version = "1.0.0", path = "../visualize" }
grovedb-path = { version = "1.0.0", path = "../path" }
hex = "0.4.3"
grovedb-version = { version = "1.0.0", 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 = "1.0.0-rc.2"
grovedb-version = { path = "../grovedb-version", version = "1.0.0" }

[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 = "1.0.0-rc.2"
version = "1.0.0"
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 = "1.0.0-rc.2"
version = "1.0.0"
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 = "1.0.0-rc.2", path = "../visualize" }
grovedb-visualize = { version = "1.0.0", path = "../visualize" }
strum = { version = "0.26.2", features = ["derive"] }
grovedb-costs = { version = "1.0.0-rc.2", path = "../costs" }
grovedb-costs = { version = "1.0.0", path = "../costs" }
thiserror = "1.0.59"
rocksdb = { version = "0.22.0", optional = true }
hex = "0.4.3"
grovedb-path = { version = "1.0.0-rc.2", path = "../path" }
grovedb-path = { version = "1.0.0", path = "../path" }

[features]
rocksdb_storage = ["rocksdb", "num_cpus", "lazy_static", "tempfile", "blake3", "integer-encoding"]
6 changes: 2 additions & 4 deletions visualize/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
[package]
name = "grovedb-visualize"
version = "1.0.0-rc.2"
version = "1.0.0"
edition = "2021"
license = "MIT"
description = "Visualizer extension crate for GroveDB"
description = "Debug prints extension crate for GroveDB"
homepage = "https://www.grovedb.org/"
documentation = "https://docs.rs/grovedb-visualize"
repository = "https://github.com/dashpay/grovedb"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
hex = "0.4.3"
itertools = "0.12.1"
Loading