diff --git a/Cargo.lock.msrv b/Cargo.lock.msrv index 7c5400f64..0c816faa2 100644 --- a/Cargo.lock.msrv +++ b/Cargo.lock.msrv @@ -1477,7 +1477,7 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "scylla" -version = "0.14.0" +version = "0.15.0" dependencies = [ "arc-swap", "assert_matches", diff --git a/docs/pyproject.toml b/docs/pyproject.toml index 0fb1189a3..8548982e0 100644 --- a/docs/pyproject.toml +++ b/docs/pyproject.toml @@ -1,14 +1,14 @@ [tool.poetry] name = "sphinx-docs" description = "ScyllaDB Documentation" -version = "0.14" +version = "0.15" authors = ["ScyllaDB Documentation Contributors"] package-mode = false [tool.poetry.dependencies] python = "^3.10" pygments = "^2.18.0" -redirects_cli ="^0.1.3" +redirects_cli = "^0.1.3" sphinx-scylladb-theme = "^1.8.1" sphinx-sitemap = "^2.6.0" sphinx-autobuild = "^2024.4.19" diff --git a/docs/source/conf.py b/docs/source/conf.py index eabedf869..9e87cf1e7 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.13.2', 'v0.14.0'] +TAGS = ['v0.14.0', 'v0.15.0'] BRANCHES = ['main'] # Set the latest version. -LATEST_VERSION = 'v0.14.0' +LATEST_VERSION = 'v0.15.0' # Set which versions are not released yet. UNSTABLE_VERSIONS = ['main'] # Set which versions are deprecated -DEPRECATED_VERSIONS = ['v0.13.2'] +DEPRECATED_VERSIONS = ['v0.14.0'] # -- General configuration diff --git a/docs/source/quickstart/create-project.md b/docs/source/quickstart/create-project.md index 7fbd45c53..bc453bfbc 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.14" +scylla = "0.15" tokio = { version = "1.12", features = ["full"] } futures = "0.3.6" uuid = "1.0" diff --git a/scylla/Cargo.toml b/scylla/Cargo.toml index 44b945599..d5d9551e2 100644 --- a/scylla/Cargo.toml +++ b/scylla/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scylla" -version = "0.14.0" +version = "0.15.0" edition = "2021" rust-version = "1.70" description = "Async CQL driver for Rust, optimized for Scylla, fully compatible with Apache Cassandraâ„¢"