From 537258fc11b16b80e734583dd1518e979fd70014 Mon Sep 17 00:00:00 2001 From: Altair-Bueno <67512202+Altair-Bueno@users.noreply.github.com> Date: Sat, 10 Sep 2022 15:21:58 +0200 Subject: [PATCH] Release 1.0.0 wz@1.0.0 wz-conf@1.0.0 wz-core@1.0.0 wz-fmt@1.0.0 wz-utf8@1.0.0 Generated by cargo-workspaces --- Cargo.lock | 10 +++++----- Cargo.toml | 10 +++++----- crates/wz-conf/Cargo.toml | 2 +- crates/wz-core/Cargo.toml | 2 +- crates/wz-fmt/Cargo.toml | 4 ++-- crates/wz-utf8/Cargo.toml | 4 ++-- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4b0b2d6..ca676d4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1158,7 +1158,7 @@ checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" [[package]] name = "wz" -version = "0.1.10" +version = "1.0.0" dependencies = [ "bumpalo", "rayon", @@ -1170,18 +1170,18 @@ dependencies = [ [[package]] name = "wz-conf" -version = "0.1.8" +version = "1.0.0" dependencies = [ "clap 3.2.20", ] [[package]] name = "wz-core" -version = "0.1.1" +version = "1.0.0" [[package]] name = "wz-fmt" -version = "0.1.1" +version = "1.0.0" dependencies = [ "rayon", "serde", @@ -1193,7 +1193,7 @@ dependencies = [ [[package]] name = "wz-utf8" -version = "0.1.1" +version = "1.0.0" dependencies = [ "bytecount", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 5c85523..879f0f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wz" -version = "0.1.10" +version = "1.0.0" edition = "2021" license = "MIT" description = "Count words, fast" @@ -14,10 +14,10 @@ categories = ["command-line-utilities", "filesystem", "text-processing"] all-features = true [dependencies] -wz-utf8 = { path = "crates/wz-utf8", features = ["runtime-dispatch-simd"], version = "0.1.0" } -wz-core = { path = "crates/wz-core", version = "0.1.0" } -wz-conf = { path = "crates/wz-conf", version = "0.1.0" } -wz-fmt = { path = "crates/wz-fmt", version = "0.1.0" } +wz-utf8 = { path = "crates/wz-utf8", features = ["runtime-dispatch-simd"], version = "1.0.0" } +wz-core = { path = "crates/wz-core", version = "1.0.0" } +wz-conf = { path = "crates/wz-conf", version = "1.0.0" } +wz-fmt = { path = "crates/wz-fmt", version = "1.0.0" } bumpalo = { version = "3.11.0" } rayon = "1.5.3" diff --git a/crates/wz-conf/Cargo.toml b/crates/wz-conf/Cargo.toml index b07992e..42e2b4f 100644 --- a/crates/wz-conf/Cargo.toml +++ b/crates/wz-conf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wz-conf" -version = "0.1.8" +version = "1.0.0" edition = "2021" license = "MIT" description = "Configuration options for wz" diff --git a/crates/wz-core/Cargo.toml b/crates/wz-core/Cargo.toml index 0a20c33..5ffb1d6 100644 --- a/crates/wz-core/Cargo.toml +++ b/crates/wz-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wz-core" -version = "0.1.1" +version = "1.0.0" edition = "2021" license = "MIT" description = "Core traits for wz" diff --git a/crates/wz-fmt/Cargo.toml b/crates/wz-fmt/Cargo.toml index e93ea65..c9c6f22 100644 --- a/crates/wz-fmt/Cargo.toml +++ b/crates/wz-fmt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wz-fmt" -version = "0.1.1" +version = "1.0.0" edition = "2021" license = "MIT" description = "Types for generating wz's output" @@ -9,7 +9,7 @@ description = "Types for generating wz's output" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -wz-core = { path = "../wz-core", version = "0.1.0" } +wz-core = { path = "../wz-core", version = "1.0.0" } terminal_size = "0.2.1" rayon = "1.5.3" tabled = "0.8.0" diff --git a/crates/wz-utf8/Cargo.toml b/crates/wz-utf8/Cargo.toml index 55676a0..391a2a0 100644 --- a/crates/wz-utf8/Cargo.toml +++ b/crates/wz-utf8/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wz-utf8" -version = "0.1.1" +version = "1.0.0" edition = "2021" license = "MIT" description = "UTF-8 counters for wz" @@ -12,7 +12,7 @@ runtime-dispatch-simd = ["bytecount/runtime-dispatch-simd"] # generic-simd = ["bytecount/generic-simd"] [dependencies] -wz-core = { path = "../wz-core", version = "0.1.0" } +wz-core = { path = "../wz-core", version = "1.0.0" } bytecount = "0.6.3" memchr = "2"