From 87abf8b41b065c0088d0c7e90472590dc9db2a03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20Bary=C5=82a?= Date: Thu, 1 Feb 2024 17:21:05 +0100 Subject: [PATCH] scylla: bump version to 0.12.0 --- Cargo.lock.msrv | 2 +- docs/pyproject.toml | 2 +- docs/source/conf.py | 6 +++--- docs/source/quickstart/create-project.md | 2 +- scylla/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock.msrv b/Cargo.lock.msrv index 85c8fba0b8..956c585541 100644 --- a/Cargo.lock.msrv +++ b/Cargo.lock.msrv @@ -1474,7 +1474,7 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "scylla" -version = "0.11.1" +version = "0.12.0" dependencies = [ "arc-swap", "assert_matches", diff --git a/docs/pyproject.toml b/docs/pyproject.toml index afb7846d9a..73c6d42cef 100644 --- a/docs/pyproject.toml +++ b/docs/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "sphinx-docs" description = "ScyllaDB Documentation" -version = "0.11.1" +version = "0.12.0" authors = ["ScyllaDB Documentation Contributors"] [tool.poetry.dependencies] diff --git a/docs/source/conf.py b/docs/source/conf.py index 0d074ec1cd..4ded5c7253 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -13,14 +13,14 @@ # -- Global variables # Build documentation for the following tags and branches -TAGS = ['v0.10.1', 'v0.11.1'] +TAGS = ['v0.11.1', 'v0.12.0'] BRANCHES = ['main'] # Set the latest version. -LATEST_VERSION = 'v0.11.1' +LATEST_VERSION = 'v0.12.0' # Set which versions are not released yet. UNSTABLE_VERSIONS = ['main'] # Set which versions are deprecated -DEPRECATED_VERSIONS = ['v0.10.1'] +DEPRECATED_VERSIONS = ['v0.11.1'] # -- General configuration diff --git a/docs/source/quickstart/create-project.md b/docs/source/quickstart/create-project.md index 8bf5af1f03..bc3c8a10a6 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.11" +scylla = "0.12" tokio = { version = "1.12", features = ["full"] } futures = "0.3.6" uuid = "1.0" diff --git a/scylla/Cargo.toml b/scylla/Cargo.toml index be7635df79..5377373c35 100644 --- a/scylla/Cargo.toml +++ b/scylla/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scylla" -version = "0.11.1" +version = "0.12.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"