Skip to content

Commit 0fc4c67

Browse files
committed
Bump version
1 parent b1ba6bf commit 0fc4c67

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
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.7.0-alpha.2"
12+
version = "0.7.0-alpha.3"
1313

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

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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.2"
38+
skytable = "0.7.0-alpha.3"
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.2/examples)
123+
You can also find some [examples here](https://github.com/skytable/client-rust/tree/v0.7.0-alpha.3/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.2", features=["aio"], default-features = false }
135+
skytable = { version = "0.7.0-alpha.3", 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.2", features=["sync", "aio"] }
147+
skytable = { version="0.7.0-alpha.3", 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.2", features=["sync","ssl"] }
157+
skytable = { version="0.7.0-alpha.3", 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.2", features=["aio","aio-ssl"], default-features=false }
165+
skytable = { version="0.7.0-alpha.3", features=["aio","aio-ssl"], default-features=false }
166166
```
167167

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

src/lib.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
//! First add this to your `Cargo.toml` file:
3636
//!
3737
//! ```toml
38-
//! skytable = "0.7.0-alpha.2"
38+
//! skytable = "0.7.0-alpha.3"
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 @@
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.2/examples)
123+
//! You can also find some [examples here](https://github.com/skytable/client-rust/tree/v0.7.0-alpha.3/examples)
124124
//!
125125
//! ## Connection pooling
126126
//!
@@ -132,7 +132,7 @@
132132
//! If you need to use an `async` API, just change your import to:
133133
//!
134134
//! ```toml
135-
//! skytable = { version = "0.7.0-alpha.2", features=["aio"], default-features = false }
135+
//! skytable = { version = "0.7.0-alpha.3", 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 @@
144144
//! this, simply change your import to:
145145
//!
146146
//! ```toml
147-
//! skytable = { version="0.7.0-alpha.2", features=["sync", "aio"] }
147+
//! skytable = { version="0.7.0-alpha.3", features=["sync", "aio"] }
148148
//! ```
149149
//!
150150
//! ## TLS
@@ -154,15 +154,15 @@
154154
//! ### Using TLS with sync interfaces
155155
//!
156156
//! ```toml
157-
//! skytable = { version="0.7.0-alpha.2", features=["sync","ssl"] }
157+
//! skytable = { version="0.7.0-alpha.3", 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.2", features=["aio","aio-ssl"], default-features=false }
165+
//! skytable = { version="0.7.0-alpha.3", features=["aio","aio-ssl"], default-features=false }
166166
//! ```
167167
//!
168168
//! You can now use the async `aio::TlsConnection` object.

0 commit comments

Comments
 (0)