Skip to content

Commit

Permalink
docs: update CHANGELOG, fix clippy issues (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
slvrtrn authored Sep 23, 2024
1 parent d5babd5 commit b85d1df
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- next-header -->

## [Unreleased] - ReleaseDate
### Changed
- MSRV is now 1.70 due to changes in `hyper-rustls` (see [v0.27.3](https://github.com/rustls/hyper-rustls/releases/tag/v%2F0.27.3)).

### Fixed
- insert: fix a panic on empty insert ([#139]).

[#139]: https://github.com/ClickHouse/clickhouse-rs/pull/139
[#140]: https://github.com/ClickHouse/clickhouse-rs/pull/140
[#141]: https://github.com/ClickHouse/clickhouse-rs/pull/141

## [0.12.2] - 2024-08-20
### Changed
Expand Down
6 changes: 3 additions & 3 deletions tests/it/insert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ use serde::{Deserialize, Serialize};
#[serde(rename_all = "camelCase")]
struct RenameRow {
#[serde(rename = "fix_id")]
pub fix_id: i64,
pub(crate) fix_id: i64,
#[serde(rename = "extComplexId")]
pub complex_id: String,
pub ext_float: f64,
pub(crate) complex_id: String,
pub(crate) ext_float: f64,
}

async fn create_rename_table(client: &Client, table_name: &str) {
Expand Down

0 comments on commit b85d1df

Please sign in to comment.