Skip to content

Commit

Permalink
Prep release
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Jan 9, 2024
1 parent eaa2d6e commit f741269
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-redis"
version = "1.0.0-b.0"
version = "1.0.0"
authors = ["ntex contributors <[email protected]>"]
description = "Redis client"
documentation = "https://docs.rs/ntex-redis"
Expand All @@ -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"] }

0 comments on commit f741269

Please sign in to comment.