File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All changes in this project will be noted in this file.
4
4
5
+ ### 0.8.1
6
+
7
+ Fixed issues with documentation
8
+
5
9
## 0.8.0
6
10
7
11
#### New features
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ license = "Apache-2.0"
9
9
name = " skytable"
10
10
readme = " README.md"
11
11
repository = " https://github.com/skytable/client-rust"
12
- version = " 0.8.0 "
12
+ version = " 0.8.1 "
13
13
14
14
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
15
15
[dependencies ]
Original file line number Diff line number Diff line change 53
53
//! db.query_parse::<()>(&insert_query).unwrap(); // insert will return empty on success
54
54
//!
55
55
//! let select_query = query!("select password, followers FROM myspace.mymodel WHERE username = ?", "sayan");
56
- //! let (pass, followers): (String, u64) = db.query_parse::<()> (&select_query).unwrap();
56
+ //! let (pass, followers): (String, u64) = db.query_parse(&select_query).unwrap();
57
57
//! assert_eq!(pass, "pass123");
58
58
//! assert_eq!(followers, 1_500_000_u64);
59
59
//!
You can’t perform that action at this time.
0 commit comments