Skip to content

Commit 74c640c

Browse files
committed
Fix ocs and bump version
1 parent d4a2225 commit 74c640c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All changes in this project will be noted in this file.
44

5+
### 0.8.1
6+
7+
Fixed issues with documentation
8+
59
## 0.8.0
610

711
#### New features

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "Apache-2.0"
99
name = "skytable"
1010
readme = "README.md"
1111
repository = "https://github.com/skytable/client-rust"
12-
version = "0.8.0"
12+
version = "0.8.1"
1313

1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515
[dependencies]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
//! db.query_parse::<()>(&insert_query).unwrap(); // insert will return empty on success
5454
//!
5555
//! 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();
5757
//! assert_eq!(pass, "pass123");
5858
//! assert_eq!(followers, 1_500_000_u64);
5959
//!

0 commit comments

Comments
 (0)