Skip to content

Commit 65f5bf2

Browse files
committed
Fix docs
1 parent fa630f7 commit 65f5bf2

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This library is the official client for the free and open-source NoSQL database
77
following the instructions [here](https://docs.skytable.io/getting-started). This library supports
88
all Skytable versions that work with the [Skyhash 1.1 Protocol](https://docs.skytable.io/protocol/skyhash).
99
This version of the library was tested with the latest Skytable release
10-
(release [0.7.5](https://github.com/skytable/skytable/releases/v0.7.5)).
10+
(release [0.7.6](https://github.com/skytable/skytable/releases/v0.7.6)).
1111

1212
## Features
1313

@@ -35,7 +35,7 @@ cargo new skyapp
3535
First add this to your `Cargo.toml` file:
3636

3737
```toml
38-
skytable = "0.7.0-alpha.4"
38+
skytable = "0.7.2"
3939
```
4040

4141
Now open up your `src/main.rs` file and establish a connection to the server while also adding some
@@ -120,7 +120,7 @@ assert!(con.set("bindata", mybinarydata).unwrap());
120120
Now that you know how you can run basic queries, check out the [`actions`] module documentation for learning
121121
to use actions and the [`types`] module documentation for implementing your own Skyhash serializable
122122
types. Need to meddle with DDL queries like creating and dropping tables? Check out the [`ddl`] module.
123-
You can also find some [examples here](https://github.com/skytable/client-rust/tree/v0.7.0-alpha.4/examples)
123+
You can also find some [examples here](https://github.com/skytable/client-rust/tree/v0.7.2/examples)
124124

125125
## Connection pooling
126126

@@ -132,7 +132,7 @@ and information.
132132
If you need to use an `async` API, just change your import to:
133133

134134
```toml
135-
skytable = { version = "0.7.0-alpha.4", features=["aio"], default-features = false }
135+
skytable = { version = "0.7.2", features=["aio"], default-features = false }
136136
```
137137

138138
You can now establish a connection by using `skytable::AsyncConnection::new()`, adding `.await`s wherever
@@ -144,7 +144,7 @@ With this client driver, it is possible to use both sync and `async` APIs **at t
144144
this, simply change your import to:
145145

146146
```toml
147-
skytable = { version="0.7.0-alpha.4", features=["sync", "aio"] }
147+
skytable = { version="0.7.2", features=["sync", "aio"] }
148148
```
149149

150150
## TLS
@@ -154,15 +154,15 @@ If you need to use TLS features, this crate will let you do so with OpenSSL.
154154
### Using TLS with sync interfaces
155155

156156
```toml
157-
skytable = { version="0.7.0-alpha.4", features=["sync","ssl"] }
157+
skytable = { version="0.7.2", features=["sync","ssl"] }
158158
```
159159

160160
You can now use the async `sync::TlsConnection` object.
161161

162162
### Using TLS with async interfaces
163163

164164
```toml
165-
skytable = { version="0.7.0-alpha.4", features=["aio","aio-ssl"], default-features=false }
165+
skytable = { version="0.7.2", features=["aio","aio-ssl"], default-features=false }
166166
```
167167

168168
You can now use the async `aio::TlsConnection` object.

src/lib.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! following the instructions [here](https://docs.skytable.io/getting-started). This library supports
88
//! all Skytable versions that work with the [Skyhash 1.1 Protocol](https://docs.skytable.io/protocol/skyhash).
99
//! This version of the library was tested with the latest Skytable release
10-
//! (release [0.7.5](https://github.com/skytable/skytable/releases/v0.7.5)).
10+
//! (release [0.7.6](https://github.com/skytable/skytable/releases/v0.7.6)).
1111
//!
1212
//! ## Features
1313
//!
@@ -37,7 +37,7 @@
3737
//! First add this to your `Cargo.toml` file:
3838
//!
3939
//! ```toml
40-
//! skytable = "0.7.0-alpha.4"
40+
//! skytable = "0.7.2"
4141
//! ```
4242
//!
4343
//! Now open up your `src/main.rs` file and establish a connection to the server while also adding some
@@ -126,7 +126,7 @@
126126
//! - the [`types`] module documentation for implementing your own Skyhash serializable types.
127127
//! - the [`ddl`] module for DDL queries like `create` and `drop`
128128
//!
129-
//! You can also find some [examples here](https://github.com/skytable/client-rust/tree/v0.7.0-alpha.4/examples).
129+
//! You can also find some [examples here](https://github.com/skytable/client-rust/tree/v0.7.2/examples).
130130
//!
131131
//! ## Pipelining
132132
//!
@@ -142,7 +142,7 @@
142142
//! If you need to use an `async` API, just change your import to:
143143
//!
144144
//! ```toml
145-
//! skytable = { version = "0.7.0-alpha.4", features=["aio"], default-features = false }
145+
//! skytable = { version = "0.7.2", features=["aio"], default-features = false }
146146
//! ```
147147
//!
148148
//! You can now establish a connection by using `skytable::AsyncConnection::new()`, adding `.await`s wherever
@@ -154,7 +154,7 @@
154154
//! this, simply change your import to:
155155
//!
156156
//! ```toml
157-
//! skytable = { version="0.7.0-alpha.4", features=["sync", "aio"] }
157+
//! skytable = { version="0.7.2", features=["sync", "aio"] }
158158
//! ```
159159
//!
160160
//! ## TLS
@@ -164,15 +164,15 @@
164164
//! ### Using TLS with sync interfaces
165165
//!
166166
//! ```toml
167-
//! skytable = { version="0.7.0-alpha.4", features=["sync","ssl"] }
167+
//! skytable = { version="0.7.2", features=["sync","ssl"] }
168168
//! ```
169169
//!
170170
//! You can now use the async `sync::TlsConnection` object.
171171
//!
172172
//! ### Using TLS with async interfaces
173173
//!
174174
//! ```toml
175-
//! skytable = { version="0.7.0-alpha.4", features=["aio","aio-ssl"], default-features=false }
175+
//! skytable = { version="0.7.2", features=["aio","aio-ssl"], default-features=false }
176176
//! ```
177177
//!
178178
//! You can now use the async `aio::TlsConnection` object.

0 commit comments

Comments
 (0)