From 0fc2260e45f9762f2890097d8ec12ac6d70c3fdc Mon Sep 17 00:00:00 2001 From: Piotr Dulikowski Date: Thu, 5 Oct 2023 16:15:28 +0200 Subject: [PATCH] scylla: bump version to 0.10.0 --- docs/pyproject.toml | 2 +- docs/source/conf.py | 4 ++-- docs/source/quickstart/create-project.md | 2 +- scylla/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/pyproject.toml b/docs/pyproject.toml index dba8a02384..e4ac52619b 100644 --- a/docs/pyproject.toml +++ b/docs/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "sphinx-docs" description = "ScyllaDB Documentation" -version = "0.9.0" +version = "0.10.0" authors = ["ScyllaDB Documentation Contributors"] [tool.poetry.dependencies] diff --git a/docs/source/conf.py b/docs/source/conf.py index 33d65ca61e..bf68aad1ec 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -14,10 +14,10 @@ # -- General configuration ------------------------------------------------ # Build documentation for the following tags and branches -TAGS = ['v0.9.0'] +TAGS = ['v0.9.0', 'v0.10.0'] BRANCHES = ['main'] # Set the latest version. -LATEST_VERSION = 'v0.9.0' +LATEST_VERSION = 'v0.10.0' # Set which versions are not released yet. UNSTABLE_VERSIONS = ['main'] # Set which versions are deprecated diff --git a/docs/source/quickstart/create-project.md b/docs/source/quickstart/create-project.md index 96bfad98f3..e945b9ec64 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.8" +scylla = "0.10" tokio = { version = "1.12", features = ["full"] } futures = "0.3.6" uuid = "1.0" diff --git a/scylla/Cargo.toml b/scylla/Cargo.toml index a308195faf..37ce163ee7 100644 --- a/scylla/Cargo.toml +++ b/scylla/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scylla" -version = "0.9.0" +version = "0.10.0" edition = "2021" description = "Async CQL driver for Rust, optimized for Scylla, fully compatible with Apache Cassandraâ„¢" repository = "https://github.com/scylladb/scylla-rust-driver"