Skip to content

Commit 72b3729

Browse files
committed
chore: release 0.13.2
1 parent b65203c commit 72b3729

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
<!-- next-header -->
88

99
## [Unreleased] - ReleaseDate
10+
11+
## [0.13.2] - 2025-03-12
1012
### Added
1113
- query: added `Query::with_param` to support server-side parameters binding ([#159])
1214
- derive: added [Variant data type](https://clickhouse.com/docs/en/sql-reference/data-types/variant) support ([#170]).
@@ -377,7 +379,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
377379
- `Client::query()` for selecting from tables and DDL statements.
378380

379381
<!-- next-url -->
380-
[Unreleased]: https://github.com/ClickHouse/clickhouse-rs/compare/v0.13.1...HEAD
382+
[Unreleased]: https://github.com/ClickHouse/clickhouse-rs/compare/v0.13.2...HEAD
383+
[0.13.2]: https://github.com/ClickHouse/clickhouse-rs/compare/v0.13.1...v0.13.2
381384
[0.13.1]: https://github.com/ClickHouse/clickhouse-rs/compare/v0.13.0...v0.13.1
382385
[0.13.0]: https://github.com/ClickHouse/clickhouse-rs/compare/v0.12.2...v0.13.0
383386
[0.12.2]: https://github.com/ClickHouse/clickhouse-rs/compare/v0.12.1...v0.12.2

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clickhouse"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
description = "Official Rust client for ClickHouse DB"
55
keywords = ["clickhouse", "database", "driver", "tokio", "hyper"]
66
authors = ["ClickHouse Contributors", "Paul Loyd <pavelko95@gmail.com>"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ Note: [ch2rs](https://github.com/ClickHouse/ch2rs) is useful to generate a row t
3535
To use the crate, add this to your `Cargo.toml`:
3636
```toml
3737
[dependencies]
38-
clickhouse = "0.13.1"
38+
clickhouse = "0.13.2"
3939

4040
[dev-dependencies]
41-
clickhouse = { version = "0.13.1", features = ["test-util"] }
41+
clickhouse = { version = "0.13.2", features = ["test-util"] }
4242
```
4343

4444
<details>

0 commit comments

Comments
 (0)