Skip to content

Commit 3c8922a

Browse files
committed
Bump up version to 0.3.0-alpha.4
1 parent d5c28f4 commit 3c8922a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "skytable"
3-
version = "0.3.0-alpha.3"
3+
version = "0.3.0-alpha.4"
44
authors = ["Sayan Nandan <[email protected]>"]
55
edition = "2018"
66
readme = "README.md"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ cargo new skyapp
2323

2424
First add this to your `Cargo.toml` file:
2525
```toml
26-
skytable = "0.3.0-alpha.3"
26+
skytable = "0.3.0-alpha.4"
2727
```
2828
Now open up your `src/main.rs` file and establish a connection to the server while also adding some
2929
imports:
@@ -53,7 +53,7 @@ Way to go &mdash; you're all set! Now go ahead and run more advanced queries!
5353

5454
If you need to use an `async` API, just change your import to:
5555
```toml
56-
skytable = { version = "0.3.0-alpha.3", features=["async"], default-features= false }
56+
skytable = { version = "0.3.0-alpha.4", features=["async"], default-features= false }
5757
```
5858
You can now establish a connection by using `skytable::AsyncConnection::new()`, adding `.await`s wherever
5959
necessary. Do note that you'll the [Tokio runtime](https://tokio.rs).
@@ -63,7 +63,7 @@ necessary. Do note that you'll the [Tokio runtime](https://tokio.rs).
6363
With this client driver, it is possible to use both sync and `async` APIs **at the same time**. To do
6464
this, simply change your import to:
6565
```toml
66-
skytable = { version="0.3.0-alpha.3", features=["sync", "async"] }
66+
skytable = { version="0.3.0-alpha.4", features=["sync", "async"] }
6767
```
6868

6969
## Contributing

src/lib.rs

Lines changed: 3 additions & 3 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.3.0-alpha.3"
41+
//! skytable = "0.3.0-alpha.4"
4242
//! ```
4343
//! Now open up your `src/main.rs` file and establish a connection to the server while also adding some
4444
//! imports:
@@ -68,7 +68,7 @@
6868
//!
6969
//! If you need to use an `async` API, just change your import to:
7070
//! ```toml
71-
//! skytable = { version = "0.3.0-alpha.3", features=["async"], default-features=false }
71+
//! skytable = { version = "0.3.0-alpha.4", features=["async"], default-features=false }
7272
//! ```
7373
//! You can now establish a connection by using `skytable::AsyncConnection::new()`, adding `.await`s wherever
7474
//! necessary. Do note that you'll the [Tokio runtime](https://tokio.rs).
@@ -78,7 +78,7 @@
7878
//! With this client driver, it is possible to use both sync and `async` APIs **at the same time**. To do
7979
//! this, simply change your import to:
8080
//! ```toml
81-
//! skytable = { version="0.3.0-alpha.3", features=["sync", "async"] }
81+
//! skytable = { version="0.3.0-alpha.4", features=["sync", "async"] }
8282
//! ```
8383
//!
8484
//! ## Contributing

0 commit comments

Comments
 (0)