From 94ed000f7488582c701e3c4c74b3720d71e78b60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20Przytu=C5=82a?= Date: Thu, 11 Jul 2024 17:09:59 +0200 Subject: [PATCH] scylla: bump version to 0.13.1 --- Cargo.lock.msrv | 2 +- docs/pyproject.toml | 4 ++-- docs/source/conf.py | 6 +++--- docs/source/quickstart/create-project.md | 2 +- scylla/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock.msrv b/Cargo.lock.msrv index 9b2dcf9ce..b4192f2f2 100644 --- a/Cargo.lock.msrv +++ b/Cargo.lock.msrv @@ -1471,7 +1471,7 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "scylla" -version = "0.13.0" +version = "0.13.1" dependencies = [ "arc-swap", "assert_matches", diff --git a/docs/pyproject.toml b/docs/pyproject.toml index 32be277d2..a3eb0566f 100644 --- a/docs/pyproject.toml +++ b/docs/pyproject.toml @@ -1,14 +1,14 @@ [tool.poetry] name = "sphinx-docs" description = "ScyllaDB Documentation" -version = "0.13.0" +version = "0.13.1" authors = ["ScyllaDB Documentation Contributors"] [tool.poetry.dependencies] python = "^3.9" pyyaml = "6.0.1" pygments = "2.15.1" -redirects_cli ="~0.1.2" +redirects_cli = "~0.1.2" sphinx-scylladb-theme = "~1.6.1" sphinx-sitemap = "2.5.1" sphinx-autobuild = "2021.3.14" diff --git a/docs/source/conf.py b/docs/source/conf.py index cbe4d3957..64a3c51d1 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.12.0', 'v0.13.0'] +TAGS = ['v0.12.0', 'v0.13.1'] BRANCHES = ['main'] # Set the latest version. -LATEST_VERSION = 'v0.13.0' +LATEST_VERSION = 'v0.13.1' # Set which versions are not released yet. UNSTABLE_VERSIONS = ['main'] # Set which versions are deprecated -DEPRECATED_VERSIONS = ['v0.12.0'] +DEPRECATED_VERSIONS = ['v0.12.0', 'v0.13.0'] # -- General configuration diff --git a/docs/source/quickstart/create-project.md b/docs/source/quickstart/create-project.md index d264e54d8..48fcaa4a8 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.13" +scylla = "0.13.1" tokio = { version = "1.12", features = ["full"] } futures = "0.3.6" uuid = "1.0" diff --git a/scylla/Cargo.toml b/scylla/Cargo.toml index 7780fcd4e..c8e80fb6a 100644 --- a/scylla/Cargo.toml +++ b/scylla/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scylla" -version = "0.13.0" +version = "0.13.1" edition = "2021" description = "Async CQL driver for Rust, optimized for Scylla, fully compatible with Apache Cassandraâ„¢" repository = "https://github.com/scylladb/scylla-rust-driver"