From 9a2b97b4a9c435b03a5625004fef6e8518ae3760 Mon Sep 17 00:00:00 2001 From: Piotr Sarna Date: Wed, 26 Jan 2022 14:18:27 +0100 Subject: [PATCH] scylla: bump version to 0.4.0 --- docs/_utils/pyproject_template.toml | 2 +- docs/pyproject.toml | 2 +- docs/source/connecting/tls.md | 2 +- docs/source/quickstart/create-project.md | 4 ++-- scylla/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/_utils/pyproject_template.toml b/docs/_utils/pyproject_template.toml index eeb5ab7ef2..74f14de600 100644 --- a/docs/_utils/pyproject_template.toml +++ b/docs/_utils/pyproject_template.toml @@ -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] diff --git a/docs/pyproject.toml b/docs/pyproject.toml index 1645116cda..2409eacf54 100644 --- a/docs/pyproject.toml +++ b/docs/pyproject.toml @@ -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] diff --git a/docs/source/connecting/tls.md b/docs/source/connecting/tls.md index b44527a79e..4023131092 100644 --- a/docs/source/connecting/tls.md +++ b/docs/source/connecting/tls.md @@ -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" ``` diff --git a/docs/source/quickstart/create-project.md b/docs/source/quickstart/create-project.md index 06a3fb258f..b55bac2a01 100644 --- a/docs/source/quickstart/create-project.md +++ b/docs/source/quickstart/create-project.md @@ -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" @@ -33,4 +33,4 @@ async fn main() { Now running `cargo run` should print: ```shell Hello scylla! -``` \ No newline at end of file +``` diff --git a/scylla/Cargo.toml b/scylla/Cargo.toml index 92072f03c4..69013b059d 100644 --- a/scylla/Cargo.toml +++ b/scylla/Cargo.toml @@ -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"