Skip to content

Commit c4eefe8

Browse files
committed
Release 0.6.2-alpha.1
1 parent c4b7680 commit c4eefe8

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
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.6.1"
12+
version = "0.6.2-alpha.1"
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
@@ -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](https://github.com/skytable/skytable/releases/v0.7.0)).
10+
(release [0.7.2-alpha.1](https://github.com/skytable/skytable/releases/v0.7.2-alpha.1)).
1111

1212
## Using this library
1313

@@ -26,7 +26,7 @@ cargo new skyapp
2626
First add this to your `Cargo.toml` file:
2727

2828
```toml
29-
skytable = "0.6.1"
29+
skytable = "0.6.2-alpha.1"
3030
```
3131

3232
Now open up your `src/main.rs` file and establish a connection to the server while also adding some
@@ -118,7 +118,7 @@ You can also find the [latest examples here](https://github.com/skytable/client-
118118
If you need to use an `async` API, just change your import to:
119119

120120
```toml
121-
skytable = { version = "0.6.1", features=["async"], default-features = false }
121+
skytable = { version = "0.6.2-alpha.1", features=["async"], default-features = false }
122122
```
123123

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

132132
```toml
133-
skytable = { version="0.6.1", features=["sync", "async"] }
133+
skytable = { version="0.6.2-alpha.1", features=["sync", "async"] }
134134
```
135135

136136
## TLS
@@ -140,15 +140,15 @@ If you need to use TLS features, this crate will let you do so with OpenSSL.
140140
### Using TLS with sync interfaces
141141

142142
```toml
143-
skytable = { version="0.6.1", features=["sync","ssl"] }
143+
skytable = { version="0.6.2-alpha.1", features=["sync","ssl"] }
144144
```
145145

146146
You can now use the async `sync::TlsConnection` object.
147147

148148
### Using TLS with async interfaces
149149

150150
```toml
151-
skytable = { version="0.6.1", features=["async","aio-ssl"], default-features=false }
151+
skytable = { version="0.6.2-alpha.1", features=["async","aio-ssl"], default-features=false }
152152
```
153153

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

src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
//!
3939
//! First add this to your `Cargo.toml` file:
4040
//! ```toml
41-
//! skytable = "0.6.1"
41+
//! skytable = "0.6.2-alpha.1"
4242
//! ```
4343
//! Now open up your `src/main.rs` file and establish a connection to the server while also adding some
4444
//! imports:
@@ -125,7 +125,7 @@
125125
//!
126126
//! If you need to use an `async` API, just change your import to:
127127
//! ```toml
128-
//! skytable = { version = "0.6.1", features=["async"], default-features=false }
128+
//! skytable = { version = "0.6.2-alpha.1", features=["async"], default-features=false }
129129
//! ```
130130
//! You can now establish a connection by using `skytable::AsyncConnection::new()`, adding `.await`s wherever
131131
//! necessary. Do note that you'll the [Tokio runtime](https://tokio.rs).
@@ -135,7 +135,7 @@
135135
//! With this client driver, it is possible to use both sync and `async` APIs **at the same time**. To do
136136
//! this, simply change your import to:
137137
//! ```toml
138-
//! skytable = { version="0.6.1", features=["sync", "async"] }
138+
//! skytable = { version="0.6.2-alpha.1", features=["sync", "async"] }
139139
//! ```
140140
//!
141141
//! ## TLS
@@ -144,13 +144,13 @@
144144
//!
145145
//! ### Using TLS with sync interfaces
146146
//! ```toml
147-
//! skytable = { version="0.6.1", features=["sync","ssl"] }
147+
//! skytable = { version="0.6.2-alpha.1", features=["sync","ssl"] }
148148
//! ```
149149
//! You can now use the async [TlsConnection](`sync::TlsConnection`) object.
150150
//!
151151
//! ### Using TLS with async interfaces
152152
//! ```toml
153-
//! skytable = { version="0.6.1", features=["async","aio-ssl"], default-features=false }
153+
//! skytable = { version="0.6.2-alpha.1", features=["async","aio-ssl"], default-features=false }
154154
//! ```
155155
//! You can now use the async [TlsConnection](`aio::TlsConnection`) object.
156156
//!

0 commit comments

Comments
 (0)