From e9845a1e0801e20d945b7b5183249fd45253ecc8 Mon Sep 17 00:00:00 2001 From: Dominic <git@msrd0.de> Date: Fri, 8 Sep 2023 12:32:46 +0200 Subject: [PATCH] Release influxdb 0.7.1 --- CHANGELOG.md | 8 ++++++++ README.md | 20 ++++++++++---------- influxdb/Cargo.toml | 2 +- 3 files changed, 19 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9314496..c8dd9b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.1] - 2023-09-08 + +### Added + - `Eq` and `PartialEq` for our error type ([#127](https://github.com/influxdb-rs/influxdb-rust/pull/127)) + +### Fixed + - Not sending authentication token in requests to Influxdb V2 ([#128](https://github.com/influxdb-rs/influxdb-rust/pull/128)) + ## [0.7.0] - 2023-07-03 ### Changed diff --git a/README.md b/README.md index 9b2ee24..64baf62 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Add the following to your `Cargo.toml` ```toml -influxdb = { version = "0.7.0", features = ["derive"] } +influxdb = { version = "0.7.1", features = ["derive"] } ``` For an example with using Serde deserialization, please refer to [serde_integration][__link4] @@ -116,43 +116,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.0", features = ["derive"] } + influxdb = { version = "0.7.1", features = ["derive"] } ``` - **[hyper][__link7]** (through reqwest), with native TLS (OpenSSL) ```toml - influxdb = { version = "0.7.0", default-features = false,features = ["derive", "use-serde", "reqwest-client"] } + influxdb = { version = "0.7.1", 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.0", default-features = false,features = ["derive", "use-serde", "hyper-client"] } + influxdb = { version = "0.7.1", default-features = false,features = ["derive", "use-serde", "hyper-client"] } ``` - **[curl][__link9]**, using [libcurl][__link10] ```toml - influxdb = { version = "0.7.0", default-features = false,features = ["derive", "use-serde", "curl-client"] } + influxdb = { version = "0.7.1", default-features = false,features = ["derive", "use-serde", "curl-client"] } ``` - **[async-h1][__link11]** with native TLS (OpenSSL) ```toml - influxdb = { version = "0.7.0", default-features = false,features = ["derive", "use-serde", "h1-client"] } + influxdb = { version = "0.7.1", default-features = false,features = ["derive", "use-serde", "h1-client"] } ``` - **[async-h1][__link12]** with [rustls][__link13] ```toml - influxdb = { version = "0.7.0", default-features = false,features = ["derive", "use-serde", "h1-client-rustls"] } + influxdb = { version = "0.7.1", 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.0", default-features = false,features = ["derive", "use-serde", "wasm-client"] } + influxdb = { version = "0.7.1", default-features = false,features = ["derive", "use-serde", "wasm-client"] } ``` @@ -167,7 +167,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]: ggGkYW0BYXSEG64av5CnNoNoGw8lPMr2b0MoG44uU0T70vGSG7osgcbjN7SoYXKEG5PjkhkfWGqnG0oaNZtY0rqCG3UxTXMZvJknG2Qnb8mp1lIsYWSBgmhpbmZsdXhkYmUwLjcuMA + [__cargo_doc2readme_dependencies_info]: ggGkYW0BYXSEG64av5CnNoNoGw8lPMr2b0MoG44uU0T70vGSG7osgcbjN7SoYXKEG8qCijK3OhAgG9r5dMb74ZyFGy-UgqMKZw5_G6wZmUfHdMJDYWSBgmhpbmZsdXhkYmUwLjcuMQ [__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/ @@ -179,7 +179,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.0/influxdb/?search=integrations::serde_integration + [__link4]: https://docs.rs/influxdb/0.7.1/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 625b9ba..1a393ea 100644 --- a/influxdb/Cargo.toml +++ b/influxdb/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "influxdb" -version = "0.7.0" +version = "0.7.1" authors = ["Gero Gerke <11deutron11@gmail.com>"] edition = "2018" description = "InfluxDB Driver for Rust"