From f741269c16c4db8add03c1ad4c2f81de6e7a1a6e Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Wed, 10 Jan 2024 00:59:03 +0600 Subject: [PATCH] Prep release --- CHANGES.md | 4 ++++ Cargo.toml | 10 +++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index e1928a7..44c4756 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [1.0.0] - 2024-01-09 + +* Fix decode array #8 + ## [1.0.0-b.0] - 2024-01-07 * Use "async fn" in trait for Service definition diff --git a/Cargo.toml b/Cargo.toml index 7932e9a..08d5579 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-redis" -version = "1.0.0-b.0" +version = "1.0.0" authors = ["ntex contributors "] description = "Redis client" documentation = "https://docs.rs/ntex-redis" @@ -12,13 +12,13 @@ exclude = [".gitignore", ".travis.yml", ".cargo/config"] edition = "2018" [dependencies] -ntex = "1.0.0-b.0" -itoa = "1.0.0" -btoi = "0.4.2" +ntex = "1.0" +itoa = "1.0" +btoi = "0.4" log = "0.4" derive_more = "0.99" [dev-dependencies] rand = "0.8" env_logger = "0.10" -ntex = { version = "1.0.0-b.0", features = ["tokio"] } +ntex = { version = "1.0", features = ["tokio"] }