From bc2808e63b98cee05aca68b463fdc893656d46da Mon Sep 17 00:00:00 2001 From: Paul Loyd Date: Sun, 19 Feb 2023 23:27:09 +0800 Subject: [PATCH] chore: release 0.11.3 --- 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 6a9e296..3336a34 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.3] - 2023-02-19 ### Added - client: support HTTPS ([#54]). @@ -232,7 +234,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.2...HEAD +[Unreleased]: https://github.com/loyd/clickhouse.rs/compare/v0.11.3...HEAD +[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 [0.11.1]: https://github.com/loyd/clickhouse.rs/compare/v0.11.0...v0.11.1 [0.11.0]: https://github.com/loyd/clickhouse.rs/compare/v0.10.0...v0.11.0 diff --git a/Cargo.toml b/Cargo.toml index bf0f7b7..c7bc3c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clickhouse" -version = "0.11.2" +version = "0.11.3" 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 795c1d5..12a554c 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.2" +clickhouse = "0.11.3" [dev-dependencies] -clickhouse = { version = "0.11.2", features = ["test-util"] } +clickhouse = { version = "0.11.3", features = ["test-util"] } ```