From 361498fd566748e7ff33a4f2b67b4a58cf8876ce Mon Sep 17 00:00:00 2001 From: Evgeny Fomin Date: Sun, 28 Jul 2024 09:46:12 +0200 Subject: [PATCH] update versions to 1.0.0 --- costs/Cargo.toml | 2 +- grovedb-version/Cargo.toml | 6 +++--- grovedb/Cargo.toml | 22 +++++++++++----------- grovedbg-types/Cargo.toml | 2 +- merk/Cargo.toml | 14 +++++++------- node-grove/Cargo.toml | 2 +- path/Cargo.toml | 2 +- storage/Cargo.toml | 8 ++++---- visualize/Cargo.toml | 6 ++---- 9 files changed, 31 insertions(+), 33 deletions(-) diff --git a/costs/Cargo.toml b/costs/Cargo.toml index 8178f839..4ee1a55b 100644 --- a/costs/Cargo.toml +++ b/costs/Cargo.toml @@ -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" diff --git a/grovedb-version/Cargo.toml b/grovedb-version/Cargo.toml index 06189c44..9802a0cf 100644 --- a/grovedb-version/Cargo.toml +++ b/grovedb-version/Cargo.toml @@ -2,13 +2,13 @@ name = "grovedb-version" authors = ["Samuel Westrich "] 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 = [] diff --git a/grovedb/Cargo.toml b/grovedb/Cargo.toml index efedc420..73cd34f4 100644 --- a/grovedb/Cargo.toml +++ b/grovedb/Cargo.toml @@ -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 ", "Wisdom Ogwu "] edition = "2021" license = "MIT" @@ -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" diff --git a/grovedbg-types/Cargo.toml b/grovedbg-types/Cargo.toml index 52beb675..f1ab09d6 100644 --- a/grovedbg-types/Cargo.toml +++ b/grovedbg-types/Cargo.toml @@ -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 "] diff --git a/merk/Cargo.toml b/merk/Cargo.toml index a41cc8f7..6fcfadd2 100644 --- a/merk/Cargo.toml +++ b/merk/Cargo.toml @@ -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 ", "Wisdom Ogwu ", "Matt Bell "] edition = "2021" license = "MIT" @@ -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" diff --git a/node-grove/Cargo.toml b/node-grove/Cargo.toml index 17e5ee09..4a4f5281 100644 --- a/node-grove/Cargo.toml +++ b/node-grove/Cargo.toml @@ -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" diff --git a/path/Cargo.toml b/path/Cargo.toml index bae12675..111bc474 100644 --- a/path/Cargo.toml +++ b/path/Cargo.toml @@ -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" diff --git a/storage/Cargo.toml b/storage/Cargo.toml index 7d7030bf..7db2b599 100644 --- a/storage/Cargo.toml +++ b/storage/Cargo.toml @@ -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" @@ -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"] diff --git a/visualize/Cargo.toml b/visualize/Cargo.toml index ac93bff0..821bf443 100644 --- a/visualize/Cargo.toml +++ b/visualize/Cargo.toml @@ -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"