Skip to content

Commit f43c2c6

Browse files
committed
Bump up version
1 parent 106bbcf commit f43c2c6

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
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.5.0-alpha.1"
12+
version = "0.5.0-alpha.2"
1313

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

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ cargo new skyapp
2626
First add this to your `Cargo.toml` file:
2727

2828
```toml
29-
skytable = "0.5.0-alpha.1"
29+
skytable = "0.5.0-alpha.2"
3030
```
3131

3232
Now open up your `src/main.rs` file and establish a connection to the server while also adding some
@@ -60,7 +60,7 @@ Way to go — you're all set! Now go ahead and run more advanced queries!
6060
If you need to use an `async` API, just change your import to:
6161

6262
```toml
63-
skytable = { version = "0.5.0-alpha.1", features=["async"], default-features= false }
63+
skytable = { version = "0.5.0-alpha.2", features=["async"], default-features= false }
6464
```
6565

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

7474
```toml
75-
skytable = { version="0.5.0-alpha.1", features=["sync", "async"] }
75+
skytable = { version="0.5.0-alpha.2", features=["sync", "async"] }
7676
```
7777

7878
## TLS
@@ -82,15 +82,15 @@ If you need to use TLS features, this crate will let you do so with OpenSSL.
8282
### Using TLS with sync interfaces
8383

8484
```toml
85-
skytable = { version="0.5.0-alpha.1", features=["sync","ssl"] }
85+
skytable = { version="0.5.0-alpha.2", features=["sync","ssl"] }
8686
```
8787

8888
You can now use the sync `sync::TlsConnection` object.
8989

9090
### Using TLS with async interfaces
9191

9292
```toml
93-
skytable = { version="0.5.0-alpha.1", features=["async","aio-ssl"], default-features=false }
93+
skytable = { version="0.5.0-alpha.2", features=["async","aio-ssl"], default-features=false }
9494
```
9595

9696
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.5.0-alpha.1"
41+
//! skytable = "0.5.0-alpha.2"
4242
//! ```
4343
//! Now open up your `src/main.rs` file and establish a connection to the server while also adding some
4444
//! imports:
@@ -94,7 +94,7 @@
9494
//!
9595
//! If you need to use an `async` API, just change your import to:
9696
//! ```toml
97-
//! skytable = { version = "0.5.0-alpha.1", features=["async"], default-features=false }
97+
//! skytable = { version = "0.5.0-alpha.2", features=["async"], default-features=false }
9898
//! ```
9999
//! You can now establish a connection by using `skytable::AsyncConnection::new()`, adding `.await`s wherever
100100
//! necessary. Do note that you'll the [Tokio runtime](https://tokio.rs).
@@ -104,7 +104,7 @@
104104
//! With this client driver, it is possible to use both sync and `async` APIs **at the same time**. To do
105105
//! this, simply change your import to:
106106
//! ```toml
107-
//! skytable = { version="0.5.0-alpha.1", features=["sync", "async"] }
107+
//! skytable = { version="0.5.0-alpha.2", features=["sync", "async"] }
108108
//! ```
109109
//!
110110
//! ## TLS
@@ -113,13 +113,13 @@
113113
//!
114114
//! ### Using TLS with sync interfaces
115115
//! ```toml
116-
//! skytable = { version="0.5.0-alpha.1", features=["sync","ssl"] }
116+
//! skytable = { version="0.5.0-alpha.2", features=["sync","ssl"] }
117117
//! ```
118118
//! You can now use the async [TlsConnection](`sync::TlsConnection`) object.
119119
//!
120120
//! ### Using TLS with async interfaces
121121
//! ```toml
122-
//! skytable = { version="0.5.0-alpha.1", features=["async","aio-ssl"], default-features=false }
122+
//! skytable = { version="0.5.0-alpha.2", features=["async","aio-ssl"], default-features=false }
123123
//! ```
124124
//! You can now use the async [TlsConnection](`aio::TlsConnection`) object.
125125
//!

0 commit comments

Comments
 (0)