Skip to content

Commit 3b926aa

Browse files
committed
Bump up version to 0.5.0
1 parent cd9bdf6 commit 3b926aa

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
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.2"
12+
version = "0.5.0"
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.2"
29+
skytable = "0.5.0"
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.2", features=["async"], default-features= false }
63+
skytable = { version = "0.5.0", 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.2", features=["sync", "async"] }
75+
skytable = { version="0.5.0", 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.2", features=["sync","ssl"] }
85+
skytable = { version="0.5.0", 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.2", features=["async","aio-ssl"], default-features=false }
93+
skytable = { version="0.5.0", features=["async","aio-ssl"], default-features=false }
9494
```
9595

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

examples/actions/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ edition = "2018"
88

99
[dependencies]
1010
# We use the `const-gen` feature to work with arrays; you can choose to leave it out
11-
skytable = { version = "0.5.0-alpha.2", features = ["const-gen"] }
11+
skytable = { version = "0.5.0", features = ["const-gen"] }

examples/aio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
skytable = { version = "0.5.0-alpha.2", features = [
9+
skytable = { version = "0.5.0", features = [
1010
"const-gen",
1111
"async",
1212
], default-features = false }

examples/basic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ edition = "2018"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
skytable = { version = "0.5.0-alpha.2" }
10+
skytable = { version = "0.5.0" }

examples/custom-queries/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ edition = "2018"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
skytable = { version = "0.5.0-alpha.2" }
9+
skytable = { version = "0.5.0" }

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.2"
41+
//! skytable = "0.5.0"
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.2", features=["async"], default-features=false }
97+
//! skytable = { version = "0.5.0", 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.2", features=["sync", "async"] }
107+
//! skytable = { version="0.5.0", 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.2", features=["sync","ssl"] }
116+
//! skytable = { version="0.5.0", 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.2", features=["async","aio-ssl"], default-features=false }
122+
//! skytable = { version="0.5.0", 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)