diff --git a/cassandra-protocol/Cargo.toml b/cassandra-protocol/Cargo.toml index a1f37ace..ca9df2fc 100644 --- a/cassandra-protocol/Cargo.toml +++ b/cassandra-protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cassandra-protocol" -version = "1.0.0" +version = "1.1.0" authors = ["Alex Pikalov ", "Kamil Rojewski "] edition = "2018" description = "Cassandra protocol implementation" diff --git a/cdrs-tokio/Cargo.toml b/cdrs-tokio/Cargo.toml index 7a295fc2..758c1345 100644 --- a/cdrs-tokio/Cargo.toml +++ b/cdrs-tokio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdrs-tokio" -version = "6.0.1" +version = "6.1.0" authors = ["Alex Pikalov ", "Kamil Rojewski "] edition = "2018" description = "Async Cassandra DB driver written in Rust" @@ -31,7 +31,7 @@ tokio-rustls = { version = "0.23", optional = true } tracing = "0.1" uuid = "0.8" webpki = { version = "0.22", optional = true } -cassandra-protocol = { path = "../cassandra-protocol", version = "1.0.0" } +cassandra-protocol = { path = "../cassandra-protocol", version = "1.1.0" } [dependencies.rustls] version = "0.20" diff --git a/changelog.md b/changelog.md index bd4f2fa5..295b3691 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,13 @@ +## 6.1.0 + +### New + +* `#[must_use]` on some functions. + +### Fixed + +* Fixed parsing `NetworkTopologyStrategy`. + ## 6.0.0 This version is a departure from legacy API design, stemming from the sync version migration. Due to large @@ -6,7 +16,7 @@ the ties and focus on delivering the best functionality without legacy burden. T quite large, but everyone is encouraged to update - the performance improvements and new features cannot be understated. -## New +### New * Topology-aware load balancing: `TopologyAwareNodeDistanceEvaluator` and `TopologyAwareLoadBalancingStrategy`. * New `ReconnectionPolicy` used when trying to re-establish connections to downed nodes.