From d4ecc76a7911deb52304264564108c1aa6af0e06 Mon Sep 17 00:00:00 2001 From: Paul Loyd Date: Mon, 12 Jun 2023 18:16:49 +0400 Subject: [PATCH] chore: release 0.11.5 --- 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 7eca6b2..27fb8a6 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.11.5] - 2023-06-12 ### Changed - inserter: start new insert only when the first row is provided ([#68], [#70]). @@ -246,7 +248,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/loyd/clickhouse.rs/compare/v0.11.4...HEAD +[Unreleased]: https://github.com/loyd/clickhouse.rs/compare/v0.11.5...HEAD +[0.11.5]: https://github.com/loyd/clickhouse.rs/compare/v0.11.4...v0.11.5 [0.11.4]: https://github.com/loyd/clickhouse.rs/compare/v0.11.3...v0.11.4 [0.11.3]: https://github.com/loyd/clickhouse.rs/compare/v0.11.2...v0.11.3 [0.11.2]: https://github.com/loyd/clickhouse.rs/compare/v0.11.1...v0.11.2 diff --git a/Cargo.toml b/Cargo.toml index 6d83f87..faf8ed4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clickhouse" -version = "0.11.4" +version = "0.11.5" description = "A typed client for ClickHouse with killer features" keywords = ["clickhouse", "database", "driver", "tokio", "hyper"] authors = ["Paul Loyd "] diff --git a/README.md b/README.md index 690bf4b..0ef7630 100644 --- a/README.md +++ b/README.md @@ -30,10 +30,10 @@ A typed client for ClickHouse. To use the crate, add this to your `Cargo.toml`: ```toml [dependencies] -clickhouse = "0.11.4" +clickhouse = "0.11.5" [dev-dependencies] -clickhouse = { version = "0.11.4", features = ["test-util"] } +clickhouse = { version = "0.11.5", features = ["test-util"] } ```