From ed74a4eeb3475c607811d22c1eb605e7f008849a Mon Sep 17 00:00:00 2001 From: Paul Loyd Date: Tue, 20 Aug 2024 13:03:35 +0400 Subject: [PATCH] chore: release 0.12.2 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- README.md | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a01be6..799966b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate + +## [0.12.2] - 2024-08-20 ### Changed - Now this crate is pure Rust, no more C/C++ dependencies. - insert: increase max size of frames to improve throughput ([#130]). @@ -319,7 +321,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `Client::query()` for selecting from tables and DDL statements. -[Unreleased]: https://github.com/ClickHouse/clickhouse-rs/compare/v0.12.1...HEAD +[Unreleased]: https://github.com/ClickHouse/clickhouse-rs/compare/v0.12.2...HEAD +[0.12.2]: https://github.com/ClickHouse/clickhouse-rs/compare/v0.12.1...v0.12.2 [0.12.1]: https://github.com/ClickHouse/clickhouse-rs/compare/v0.12.0...v0.12.1 [0.12.0]: https://github.com/ClickHouse/clickhouse-rs/compare/v0.11.6...v0.12.0 [0.11.6]: https://github.com/ClickHouse/clickhouse-rs/compare/v0.11.5...v0.11.6 diff --git a/Cargo.toml b/Cargo.toml index e05fc52..f5a0f44 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clickhouse" -version = "0.12.1" +version = "0.12.2" description = "Official Rust client for ClickHouse DB" keywords = ["clickhouse", "database", "driver", "tokio", "hyper"] authors = ["ClickHouse Contributors", "Paul Loyd "] diff --git a/README.md b/README.md index f53f9cc..c6dc0af 100644 --- a/README.md +++ b/README.md @@ -35,10 +35,10 @@ Note: [ch2rs](https://github.com/ClickHouse/ch2rs) is useful to generate a row t To use the crate, add this to your `Cargo.toml`: ```toml [dependencies] -clickhouse = "0.12.1" +clickhouse = "0.12.2" [dev-dependencies] -clickhouse = { version = "0.12.1", features = ["test-util"] } +clickhouse = { version = "0.12.2", features = ["test-util"] } ```