Skip to content

Commit f741269

Browse files
committed
Prep release
1 parent eaa2d6e commit f741269

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes
22

3+
## [1.0.0] - 2024-01-09
4+
5+
* Fix decode array #8
6+
37
## [1.0.0-b.0] - 2024-01-07
48

59
* Use "async fn" in trait for Service definition

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ntex-redis"
3-
version = "1.0.0-b.0"
3+
version = "1.0.0"
44
authors = ["ntex contributors <[email protected]>"]
55
description = "Redis client"
66
documentation = "https://docs.rs/ntex-redis"
@@ -12,13 +12,13 @@ exclude = [".gitignore", ".travis.yml", ".cargo/config"]
1212
edition = "2018"
1313

1414
[dependencies]
15-
ntex = "1.0.0-b.0"
16-
itoa = "1.0.0"
17-
btoi = "0.4.2"
15+
ntex = "1.0"
16+
itoa = "1.0"
17+
btoi = "0.4"
1818
log = "0.4"
1919
derive_more = "0.99"
2020

2121
[dev-dependencies]
2222
rand = "0.8"
2323
env_logger = "0.10"
24-
ntex = { version = "1.0.0-b.0", features = ["tokio"] }
24+
ntex = { version = "1.0", features = ["tokio"] }

0 commit comments

Comments
 (0)