Skip to content

Commit d055fa3

Browse files
aembkeJ0HN50N133
andauthored
5.0.1 (#33)
* fix: resp2 codec should be disabled if resp2 is disabled * fix: resp3 pubsub duck typing --------- Co-authored-by: JohnsonLee <[email protected]>
1 parent a539798 commit d055fa3

File tree

4 files changed

+235
-199
lines changed

4 files changed

+235
-199
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
jobs:
44
build-docs:
55
docker:
6-
- image: cimg/rust:1.77.0
6+
- image: cimg/rust:1.77
77
steps:
88
- checkout
99
- run:
@@ -26,31 +26,31 @@ jobs:
2626
command: source tests/environ && tests/codec/runner.sh
2727
tests-bytes:
2828
docker:
29-
- image: cimg/rust:1.77.0
29+
- image: cimg/rust:1.77
3030
steps:
3131
- checkout
3232
- run:
3333
name: Run tests with bytes features
3434
command: cargo test --release --features "resp2 resp3 bytes codec convert" --lib
3535
tests-no-bytes:
3636
docker:
37-
- image: cimg/rust:1.77.0
37+
- image: cimg/rust:1.77
3838
steps:
3939
- checkout
4040
- run:
4141
name: Run tests without bytes or bytes_utils
4242
command: cargo test --release --features "resp2 resp3 convert" --lib
4343
tests-indexmap:
4444
docker:
45-
- image: cimg/rust:1.77.0
45+
- image: cimg/rust:1.77
4646
steps:
4747
- checkout
4848
- run:
4949
name: Run tests with indexmap features
5050
command: cargo test --release --features "index-map resp2 resp3 convert" --lib
5151
clippy-lint:
5252
docker:
53-
- image: cimg/rust:1.77.0
53+
- image: cimg/rust:1.77
5454
environment:
5555
CARGO_NET_GIT_FETCH_WITH_CLI: true
5656
steps:
@@ -60,7 +60,7 @@ jobs:
6060
command: cargo clippy --features "bytes convert codec std resp2 resp3" --lib --tests --benches -- -Dwarnings
6161
build-no-std:
6262
docker:
63-
- image: cimg/rust:1.77.0
63+
- image: cimg/rust:1.77
6464
steps:
6565
- checkout
6666
- run:

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT"
77
name = "redis-protocol"
88
readme = "README.md"
99
repository = "https://github.com/aembke/redis-protocol.rs"
10-
version = "5.0.0"
10+
version = "5.0.1"
1111
edition = "2021"
1212
exclude = ["fuzz", ".circleci", "benches"]
1313

@@ -51,7 +51,7 @@ bytes = ["dep:bytes", "bytes-utils"]
5151
decode-logs = []
5252
alloc = ["nom/alloc"]
5353
std = ["cookie-factory/default", "nom/default"]
54-
codec = ["tokio-util", "bytes", "resp2", "resp3"]
54+
codec = ["tokio-util", "bytes"]
5555
convert = []
5656

5757
[lib]
@@ -74,4 +74,4 @@ test = true
7474

7575
#[[bench]]
7676
#name = "resp3_decode"
77-
#harness = false
77+
#harness = false

0 commit comments

Comments
 (0)