From b35281bef33e742b0d436ffd2e935fdf8aa55275 Mon Sep 17 00:00:00 2001 From: Kamil Rojewski Date: Tue, 2 Mar 2021 10:51:54 +0100 Subject: [PATCH] version bump --- Cargo.toml | 4 ++-- changelog.md | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2c0ce982..b8b290c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdrs-tokio" -version = "2.1.0" +version = "3.0.0" authors = ["Alex Pikalov ", "Kamil Rojewski "] edition = "2018" @@ -49,7 +49,7 @@ default-features = false env_logger = "0.8" maplit = "1.0.0" regex = "1.4" -cdrs-tokio-helpers-derive = { git = "https://github.com/krojew/cdrs-tokio-helpers-derive" } +cdrs-tokio-helpers-derive = "2.0" [[example]] name = "dynamic_cluster" diff --git a/changelog.md b/changelog.md index 2bc2d13c..0dd8a977 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,19 @@ +## 3.0.0 + +### Fixed + +* Remembering `USE`d keyspaces across connections. +* Race condition on query id overflow. + +### Changed + +* Removed deprecated `PasswordAuthenticator`. +* Removed unused `Compressor` trait. +* Large API cleanup. +* Renamed `IntoBytes` to `AsBytes`. +* `Authenticator` can now be created at runtime - removed static type parameter. +* Removed unneeded memory allocations when parsing data. + ## 2.1.0 ### Fixed