From e905c6240a9cfd7f2a1a02ab94f11c6583fe4a44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20Przytu=C5=82a?= Date: Tue, 8 Sep 2026 16:25:02 +0200 Subject: [PATCH] cargo: bump cpp-rs-driver to 1.1.2 --- docs/source/conf.py | 6 +++--- include/cassandra.h | 2 +- scylla-rust-wrapper/Cargo.lock | 2 +- scylla-rust-wrapper/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 8078e731..2b4853b5 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -15,16 +15,16 @@ # -- Global variables # Builds documentation for the following tags and branches. -TAGS = ["v1.0.0", "v1.0.1", "v1.1.0", "v1.1.1"] +TAGS = ["v1.0.0", "v1.0.1", "v1.1.0", "v1.1.1", "v1.1.2"] BRANCHES = [ "master", ] # Sets the latest version. -LATEST_VERSION = "v1.1.1" +LATEST_VERSION = "v1.1.2" # Set which versions are not released yet. UNSTABLE_VERSIONS = ["master"] # Set which versions are deprecated -DEPRECATED_VERSIONS = ["v1.0.0", "v1.0.1", "v1.1.0"] +DEPRECATED_VERSIONS = ["v1.0.0", "v1.0.1", "v1.1.0", "v1.1.1"] # Sets custom build. FLAGS = ["theme"] diff --git a/include/cassandra.h b/include/cassandra.h index ec3ac16a..cba9f398 100644 --- a/include/cassandra.h +++ b/include/cassandra.h @@ -53,7 +53,7 @@ #define CASS_VERSION_MAJOR 1 #define CASS_VERSION_MINOR 1 -#define CASS_VERSION_PATCH 1 +#define CASS_VERSION_PATCH 2 #define CASS_VERSION_SUFFIX "" #ifdef __cplusplus diff --git a/scylla-rust-wrapper/Cargo.lock b/scylla-rust-wrapper/Cargo.lock index 0cc34c1d..bd9f9334 100644 --- a/scylla-rust-wrapper/Cargo.lock +++ b/scylla-rust-wrapper/Cargo.lock @@ -1228,7 +1228,7 @@ dependencies = [ [[package]] name = "scylla-rust-wrapper" -version = "1.1.1" +version = "1.1.2" dependencies = [ "arc-swap", "assert_matches", diff --git a/scylla-rust-wrapper/Cargo.toml b/scylla-rust-wrapper/Cargo.toml index 7b998cd4..2bc658ea 100644 --- a/scylla-rust-wrapper/Cargo.toml +++ b/scylla-rust-wrapper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scylla-rust-wrapper" -version = "1.1.1" +version = "1.1.2" edition = "2024" description = "Wrapper for Scylla's Rust driver, exports functions to be used by C" repository = "https://github.com/scylladb/scylla-rust-driver"