From 147624f1b6a2420681ee0da04835067870b2d447 Mon Sep 17 00:00:00 2001 From: Olle Sandberg Date: Tue, 7 Apr 2020 22:53:38 +0200 Subject: [PATCH] Prepare for v0.6.0 release --- Cargo.lock | 6 +++--- Cargo.toml | 6 +++--- bitar/Cargo.toml | 6 +++++- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bc44704..457b248 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -77,11 +77,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "bita" -version = "0.5.2" +version = "0.6.0" dependencies = [ "async-trait 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", - "bitar 0.5.2", + "bitar 0.6.0", "blake2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -95,7 +95,7 @@ dependencies = [ [[package]] name = "bitar" -version = "0.5.2" +version = "0.6.0" dependencies = [ "async-stream 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "async-trait 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 43fded4..626e89c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bita" -version = "0.5.2" +version = "0.6.0" authors = ["Olle Sandberg "] license = "MIT" edition = '2018' @@ -8,7 +8,7 @@ description = "Differential file synchronization over http(s)." repository = "https://github.com/oll3/bita" readme = "README.md" keywords = ["sofware-update", "file-synchronization", "delta-update", "differential"] -categories = ["command-line-utilities", "compression"] +categories = ["command-line-utilities", "compression", "filesystem"] [workspace] members = [ @@ -24,7 +24,7 @@ fern = "0.6.0" chrono = "0.4.11" futures-util = "0.3.4" tokio = { version = "0.2.16", features = ["fs", "io-std", "sync", "io-util", "macros", "time", "rt-threaded"] } -bitar = { version = "0.5.2", path = "bitar" } +bitar = { version = "0.6.0", path = "bitar" } reqwest = "0.10.4" num_cpus = "1.12.0" async-trait = "0.1.30" diff --git a/bitar/Cargo.toml b/bitar/Cargo.toml index 618ed06..260e79a 100644 --- a/bitar/Cargo.toml +++ b/bitar/Cargo.toml @@ -1,11 +1,15 @@ [package] name = "bitar" -version = "0.5.2" +version = "0.6.0" authors = ["Olle Sandberg "] license = "MIT" edition = '2018' description = "bita archive utilities" repository = "https://github.com/oll3/bita" +readme = "README.md" +keywords = ["sofware-update", "file-synchronization", "delta-update", "differential"] +categories = ["compression", "filesystem"] + [build-dependencies] prost-build = "0.6"