From f3470e33bd2ef3047f6080ed34792894cfeca3fd Mon Sep 17 00:00:00 2001 From: Dominic Date: Wed, 14 Feb 2024 11:18:42 +0100 Subject: [PATCH] Release influxdb 0.7.2 --- CHANGELOG.md | 5 +++++ README.md | 20 ++++++++++---------- influxdb/Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8dd9b2..3982d81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.2] - 2024-02-14 + +### Fixed + - Fixed incorrect timestamp when using nanosecond precision with chrono ([#134](https://github.com/influxdb-rs/influxdb-rust/pull/134)) + ## [0.7.1] - 2023-09-08 ### Added diff --git a/README.md b/README.md index 695fe15..73f4d7e 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Add the following to your `Cargo.toml` ```toml -influxdb = { version = "0.7.1", features = ["derive"] } +influxdb = { version = "0.7.2", features = ["derive"] } ``` For an example with using Serde deserialization, please refer to [serde_integration][__link4] @@ -115,43 +115,43 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu - **[hyper][__link5]** (through reqwest, used by default), with [rustls][__link6] ```toml - influxdb = { version = "0.7.1", features = ["derive"] } + influxdb = { version = "0.7.2", features = ["derive"] } ``` - **[hyper][__link7]** (through reqwest), with native TLS (OpenSSL) ```toml - influxdb = { version = "0.7.1", default-features = false,features = ["derive", "use-serde", "reqwest-client"] } + influxdb = { version = "0.7.2", default-features = false,features = ["derive", "use-serde", "reqwest-client"] } ``` - **[hyper][__link8]** (through surf), use this if you need tokio 0.2 compatibility ```toml - influxdb = { version = "0.7.1", default-features = false,features = ["derive", "use-serde", "hyper-client"] } + influxdb = { version = "0.7.2", default-features = false,features = ["derive", "use-serde", "hyper-client"] } ``` - **[curl][__link9]**, using [libcurl][__link10] ```toml - influxdb = { version = "0.7.1", default-features = false,features = ["derive", "use-serde", "curl-client"] } + influxdb = { version = "0.7.2", default-features = false,features = ["derive", "use-serde", "curl-client"] } ``` - **[async-h1][__link11]** with native TLS (OpenSSL) ```toml - influxdb = { version = "0.7.1", default-features = false,features = ["derive", "use-serde", "h1-client"] } + influxdb = { version = "0.7.2", default-features = false,features = ["derive", "use-serde", "h1-client"] } ``` - **[async-h1][__link12]** with [rustls][__link13] ```toml - influxdb = { version = "0.7.1", default-features = false,features = ["derive", "use-serde", "h1-client-rustls"] } + influxdb = { version = "0.7.2", default-features = false,features = ["derive", "use-serde", "h1-client-rustls"] } ``` - WebAssembly’s `window.fetch`, via `web-sys` and **[wasm-bindgen][__link14]** ```toml - influxdb = { version = "0.7.1", default-features = false,features = ["derive", "use-serde", "wasm-client"] } + influxdb = { version = "0.7.2", default-features = false,features = ["derive", "use-serde", "wasm-client"] } ``` @@ -166,7 +166,7 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu @ 2020 Gero Gerke and [contributors]. [contributors]: https://github.com/influxdb-rs/influxdb-rust/graphs/contributors - [__cargo_doc2readme_dependencies_info]: ggGkYW0BYXSEG_Yk-0hvrVPoG-pGw0Sym8kbG2s5Ga25QGRAG6zgaYax6AfsYXKEGzTIyZ81-O7yGzBPOAorSf5GGwJWIVB6K85jG41Hl-f5lXJVYWSBgmhpbmZsdXhkYmUwLjcuMQ + [__cargo_doc2readme_dependencies_info]: ggGkYW0BYXSEG_Yk-0hvrVPoG-pGw0Sym8kbG2s5Ga25QGRAG6zgaYax6AfsYXKEG5FQA0msUh34G1V6qHa_8CeQG66nRf4Jd7PiG99LD0P5Tiz5YWSBgmhpbmZsdXhkYmUwLjcuMg [__link0]: https://github.com/influxdb-rs/influxdb-rust/blob/main/CONTRIBUTING.md [__link1]: https://github.com/influxdb-rs/influxdb-rust/blob/main/CODE_OF_CONDUCT.md [__link10]: https://curl.se/libcurl/ @@ -178,7 +178,7 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu [__link16]: https://opensource.org/licenses/MIT [__link2]: https://github.com/influxdb-rs/influxdb-rust/blob/main/CHANGELOG.md [__link3]: https://github.com/influxdb-rs/influxdb-rust/blob/main/influxdb/Cargo.toml - [__link4]: https://docs.rs/influxdb/0.7.1/influxdb/?search=integrations::serde_integration + [__link4]: https://docs.rs/influxdb/0.7.2/influxdb/?search=integrations::serde_integration [__link5]: https://github.com/hyperium/hyper [__link6]: https://github.com/ctz/rustls [__link7]: https://github.com/hyperium/hyper diff --git a/influxdb/Cargo.toml b/influxdb/Cargo.toml index 1a393ea..4f58811 100644 --- a/influxdb/Cargo.toml +++ b/influxdb/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "influxdb" -version = "0.7.1" +version = "0.7.2" authors = ["Gero Gerke <11deutron11@gmail.com>"] edition = "2018" description = "InfluxDB Driver for Rust"