Skip to content

Commit 209bfe4

Browse files
committed
version: 0.8.8 and fix examples
1 parent bc0d531 commit 209bfe4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

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.7"
12+
version = "0.8.8"
1313

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Introduction
44

5-
This library is the official client for the free and open-source NoSQL database [Skytable](https://github.com/skytable/skytable). First, go ahead and install Skytable by following the instructions [here](https://docs.skytable.io/getting-started). This library supports all Skytable versions that work with the [Skyhash 2 Protocol](https://docs.skytable.io/protocol/overview). This version of the library was tested with the latest Skytable release (release [0.8.1](https://github.com/skytable/skytable/releases/v0.8.2)). [Read more about supported versions here](#version-support).
5+
This library is the official client for the free and open-source NoSQL database [Skytable](https://github.com/skytable/skytable). First, go ahead and install Skytable by following the instructions [here](https://docs.skytable.io/getting-started). This library supports all Skytable versions that work with the [Skyhash 2 Protocol](https://docs.skytable.io/protocol/overview). This version of the library was tested with the latest Skytable release (release [0.8.3](https://github.com/skytable/skytable/releases/v0.8.3)). [Read more about supported versions here](#version-support).
66

77
## Definitive example
88

examples/custom_types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ fn main() {
5151
.unwrap();
5252
// create model
5353
db.query_parse::<()>(&query!(
54-
"create model myspace.mymodel(username: string, password: string, followers: uint64, null email: string"
54+
"create model myspace.mymodel(username: string, password: string, followers: uint64, null email: string)"
5555
))
5656
.unwrap();
5757

examples/simple.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ fn main() {
1818
.unwrap();
1919
// create model
2020
db.query_parse::<()>(&query!(
21-
"create model myspace.mymodel(username: string, password: string, followers: uint64"
21+
"create model myspace.mymodel(username: string, password: string, followers: uint64)"
2222
))
2323
.unwrap();
2424

0 commit comments

Comments
 (0)