Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 538 Bytes

CHANGELOG.md

File metadata and controls

17 lines (12 loc) · 538 Bytes

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

@0.0.63 (12. April, 2022)

  • Support filter expression for query and scan. You can pass filter_expression like following.
  • Use tokio@1.17.0
let filter = Scan::filter_expression(Scan::num()).eq(1000);
let res = client.scan().filter(filter).run().await.unwrap();