Skip to content

Commit acf4160

Browse files
committed
Bump up version
1 parent 22ef5fc commit acf4160

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.4"
3+
version = "0.3.0"
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.4"
26+
skytable = "0.3.0"
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.4", features=["async"], default-features= false }
56+
skytable = { version = "0.3.0", 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.4", features=["sync", "async"] }
66+
skytable = { version="0.3.0", 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.4"
41+
//! skytable = "0.3.0"
4242
//! ```
4343
//! Now open up your `src/main.rs` file and establish a connection to the server while also adding some
4444
//! imports:
@@ -74,7 +74,7 @@
7474
//!
7575
//! If you need to use an `async` API, just change your import to:
7676
//! ```toml
77-
//! skytable = { version = "0.3.0-alpha.4", features=["async"], default-features=false }
77+
//! skytable = { version = "0.3.0", features=["async"], default-features=false }
7878
//! ```
7979
//! You can now establish a connection by using `skytable::AsyncConnection::new()`, adding `.await`s wherever
8080
//! necessary. Do note that you'll the [Tokio runtime](https://tokio.rs).
@@ -84,7 +84,7 @@
8484
//! With this client driver, it is possible to use both sync and `async` APIs **at the same time**. To do
8585
//! this, simply change your import to:
8686
//! ```toml
87-
//! skytable = { version="0.3.0-alpha.4", features=["sync", "async"] }
87+
//! skytable = { version="0.3.0", features=["sync", "async"] }
8888
//! ```
8989
//!
9090
//! ## Contributing

0 commit comments

Comments
 (0)