redis-rs v0.18.0 Release Notes

Release Date: 2020-12-03 // over 3 years ago
  • ๐Ÿ› Bug Fixes

    • Don't require tokio for the connection manager (46be86f3)

    • ๐Ÿ‘‰ Make ToRedisArgs and FromRedisValue consistent for booleans

    ๐Ÿ’ฅ BREAKING CHANGE

    ๐Ÿ‘€ bool are now written as 0 and 1 instead of true and false. Parsing a bool still accept true and false so this should not break anything for most users however if you are reading something out that was stored as a bool you may see different results.

    ๐Ÿ”‹ Features

    • โšก๏ธ Update tokio dependency to 0.3 (bf5e0af3, closes #396)
    • ๐Ÿ“„ add doc_cfg for Makefile and docs.rs config (1bf79517)
    • Impl FromRedisValue for i128 and u128