Skip to content

Commit

Permalink
scylla: bump version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
psarna committed Jan 26, 2022
1 parent bbe8e62 commit 9a2b97b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/_utils/pyproject_template.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "sphinx-docs"
description = "ScyllaDB Documentation"
version = "0.3.1"
version = "0.4.0"
authors = ["ScyllaDB Documentation Contributors"]

[tool.poetry.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion docs/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "sphinx-docs"
description = "ScyllaDB Documentation"
version = "0.3.1"
version = "0.4.0"
authors = ["ScyllaDB Documentation Contributors"]

[tool.poetry.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion docs/source/connecting/tls.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ It was chosen because [`rustls`](https://github.com/ctz/rustls) doesn't support

To enable the `tls` feature add in `Cargo.toml`:
```toml
scylla = { version = "0.3.1", features = ["ssl"] }
scylla = { version = "0.4.0", features = ["ssl"] }
openssl = "0.10.32"
```

Expand Down
4 changes: 2 additions & 2 deletions docs/source/quickstart/create-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cargo new myproject
In `Cargo.toml` add useful dependencies:
```toml
[dependencies]
scylla = "0.3.1"
scylla = "0.4.0"
tokio = { version = "1.1.0", features = ["full"] }
futures = "0.3.6"
uuid = "0.8.1"
Expand All @@ -33,4 +33,4 @@ async fn main() {
Now running `cargo run` should print:
```shell
Hello scylla!
```
```
2 changes: 1 addition & 1 deletion scylla/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scylla"
version = "0.3.1"
version = "0.4.0"
edition = "2018"
description = "Async CQL driver for Rust, optimized for Scylla, fully compatible with Apache Cassandra™"
repository = "https://github.com/scylladb/scylla-rust-driver"
Expand Down

0 comments on commit 9a2b97b

Please sign in to comment.