From 5e39c8c63b414f5ff6ae384ac1647887b0de9c7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20Przytu=C5=82a?= Date: Tue, 24 Feb 2026 09:44:27 +0100 Subject: [PATCH] cargo: bump cpp-rs-driver to 1.0.0 Also, the version in the header file was updated to 1.0.0. We cut off the old version 2.16.1, which was the last version of the original cpp-rs-driver, and we start with 1.0.0 for the new release. --- include/cassandra.h | 6 +++--- scylla-rust-wrapper/Cargo.lock | 2 +- scylla-rust-wrapper/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/cassandra.h b/include/cassandra.h index 096d4181..ebb92f75 100644 --- a/include/cassandra.h +++ b/include/cassandra.h @@ -51,9 +51,9 @@ * over the Cassandra Binary Protocol (versions 1, 2, or 3). */ -#define CASS_VERSION_MAJOR 2 -#define CASS_VERSION_MINOR 16 -#define CASS_VERSION_PATCH 1 +#define CASS_VERSION_MAJOR 1 +#define CASS_VERSION_MINOR 0 +#define CASS_VERSION_PATCH 0 #define CASS_VERSION_SUFFIX "" #ifdef __cplusplus diff --git a/scylla-rust-wrapper/Cargo.lock b/scylla-rust-wrapper/Cargo.lock index 39967542..808f53be 100644 --- a/scylla-rust-wrapper/Cargo.lock +++ b/scylla-rust-wrapper/Cargo.lock @@ -1162,7 +1162,7 @@ dependencies = [ [[package]] name = "scylla-rust-wrapper" -version = "0.6.0" +version = "1.0.0" dependencies = [ "arc-swap", "assert_matches", diff --git a/scylla-rust-wrapper/Cargo.toml b/scylla-rust-wrapper/Cargo.toml index e4862757..d7c38823 100644 --- a/scylla-rust-wrapper/Cargo.toml +++ b/scylla-rust-wrapper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scylla-rust-wrapper" -version = "0.6.0" +version = "1.0.0" edition = "2024" description = "Wrapper for Scylla's Rust driver, exports functions to be used by C" repository = "https://github.com/scylladb/scylla-rust-driver"