Skip to content

Commit 6df82f3

Browse files
committed
Release 0.5.1
1 parent 1dbc872 commit 6df82f3

File tree

4 files changed

+23
-17
lines changed

4 files changed

+23
-17
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12+
## [0.5.1] - 2021-12-23
13+
14+
### Changed
15+
- `Debug` implementation on `Client` now redacts passwords ([#106](https://github.com/influxdb-rs/influxdb-rust/pull/106))
16+
- `Client` and `Query` builder functions are now annotated with `#[must_use]` ([#107](https://github.com/influxdb-rs/influxdb-rust/pull/107))
17+
1218
## [0.5.0] - 2021-11-04
1319

1420
### Added

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Pull requests are always welcome. See [Contributing](https://github.com/influxdb
5252
Add the following to your `Cargo.toml`
5353

5454
```toml
55-
influxdb = { version = "0.5.0", features = ["derive"] }
55+
influxdb = { version = "0.5.1", features = ["derive"] }
5656
```
5757

5858
For an example with using Serde deserialization, please refer to [serde_integration](crate::integrations::serde_integration)
@@ -105,33 +105,33 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu
105105

106106
- **[hyper](https://github.com/hyperium/hyper)** (through reqwest, used by default), with [rustls](https://github.com/ctz/rustls)
107107
```toml
108-
influxdb = { version = "0.5.0", features = ["derive"] }
108+
influxdb = { version = "0.5.1", features = ["derive"] }
109109
```
110110

111111
- **[hyper](https://github.com/hyperium/hyper)** (through reqwest), with native TLS (OpenSSL)
112112
```toml
113-
influxdb = { version = "0.5.0", default-features = false, features = ["derive", "use-serde", "reqwest-client"] }
113+
influxdb = { version = "0.5.1", default-features = false, features = ["derive", "use-serde", "reqwest-client"] }
114114
```
115115

116116
- **[hyper](https://github.com/hyperium/hyper)** (through surf), use this if you need tokio 0.2 compatibility
117117
```toml
118-
influxdb = { version = "0.5.0", default-features = false, features = ["derive", "use-serde", "curl-client"] }
118+
influxdb = { version = "0.5.1", default-features = false, features = ["derive", "use-serde", "curl-client"] }
119119
```
120120
- **[curl](https://github.com/alexcrichton/curl-rust)**, using [libcurl](https://curl.se/libcurl/)
121121
```toml
122-
influxdb = { version = "0.5.0", default-features = false, features = ["derive", "use-serde", "curl-client"] }
122+
influxdb = { version = "0.5.1", default-features = false, features = ["derive", "use-serde", "curl-client"] }
123123
```
124124
- **[async-h1](https://github.com/http-rs/async-h1)** with native TLS (OpenSSL)
125125
```toml
126-
influxdb = { version = "0.5.0", default-features = false, features = ["derive", "use-serde", "h1-client"] }
126+
influxdb = { version = "0.5.1", default-features = false, features = ["derive", "use-serde", "h1-client"] }
127127
```
128128
- **[async-h1](https://github.com/http-rs/async-h1)** with [rustls](https://github.com/ctz/rustls)
129129
```toml
130-
influxdb = { version = "0.5.0", default-features = false, features = ["derive", "use-serde", "h1-client-rustls"] }
130+
influxdb = { version = "0.5.1", default-features = false, features = ["derive", "use-serde", "h1-client-rustls"] }
131131
```
132132
- WebAssembly's `window.fetch`, via `web-sys` and **[wasm-bindgen](https://github.com/rustwasm/wasm-bindgen)**
133133
```toml
134-
influxdb = { version = "0.5.0", default-features = false, features = ["derive", "use-serde", "wasm-client"] }
134+
influxdb = { version = "0.5.1", default-features = false, features = ["derive", "use-serde", "wasm-client"] }
135135
```
136136

137137
## License

influxdb/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "influxdb"
5-
version = "0.5.0"
5+
version = "0.5.1"
66
authors = ["Gero Gerke <[email protected]>"]
77
edition = "2018"
88
description = "InfluxDB Driver for Rust"

influxdb/src/lib.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
//! Add the following to your `Cargo.toml`
2121
//!
2222
//! ```toml
23-
//! influxdb = { version = "0.5.0", features = ["derive"] }
23+
//! influxdb = { version = "0.5.1", features = ["derive"] }
2424
//! ```
2525
//!
2626
//! For an example with using Serde deserialization, please refer to [serde_integration](crate::integrations::serde_integration)
@@ -73,33 +73,33 @@
7373
//!
7474
//! - **[hyper](https://github.com/hyperium/hyper)** (through reqwest, used by default), with [rustls](https://github.com/ctz/rustls)
7575
//! ```toml
76-
//! influxdb = { version = "0.5.0", features = ["derive"] }
76+
//! influxdb = { version = "0.5.1", features = ["derive"] }
7777
//! ```
7878
//!
7979
//! - **[hyper](https://github.com/hyperium/hyper)** (through reqwest), with native TLS (OpenSSL)
8080
//! ```toml
81-
//! influxdb = { version = "0.5.0", default-features = false, features = ["derive", "use-serde", "reqwest-client"] }
81+
//! influxdb = { version = "0.5.1", default-features = false, features = ["derive", "use-serde", "reqwest-client"] }
8282
//! ```
8383
//!
8484
//! - **[hyper](https://github.com/hyperium/hyper)** (through surf), use this if you need tokio 0.2 compatibility
8585
//! ```toml
86-
//! influxdb = { version = "0.5.0", default-features = false, features = ["derive", "use-serde", "curl-client"] }
86+
//! influxdb = { version = "0.5.1", default-features = false, features = ["derive", "use-serde", "curl-client"] }
8787
//! ```
8888
//! - **[curl](https://github.com/alexcrichton/curl-rust)**, using [libcurl](https://curl.se/libcurl/)
8989
//! ```toml
90-
//! influxdb = { version = "0.5.0", default-features = false, features = ["derive", "use-serde", "curl-client"] }
90+
//! influxdb = { version = "0.5.1", default-features = false, features = ["derive", "use-serde", "curl-client"] }
9191
//! ```
9292
//! - **[async-h1](https://github.com/http-rs/async-h1)** with native TLS (OpenSSL)
9393
//! ```toml
94-
//! influxdb = { version = "0.5.0", default-features = false, features = ["derive", "use-serde", "h1-client"] }
94+
//! influxdb = { version = "0.5.1", default-features = false, features = ["derive", "use-serde", "h1-client"] }
9595
//! ```
9696
//! - **[async-h1](https://github.com/http-rs/async-h1)** with [rustls](https://github.com/ctz/rustls)
9797
//! ```toml
98-
//! influxdb = { version = "0.5.0", default-features = false, features = ["derive", "use-serde", "h1-client-rustls"] }
98+
//! influxdb = { version = "0.5.1", default-features = false, features = ["derive", "use-serde", "h1-client-rustls"] }
9999
//! ```
100100
//! - WebAssembly's `window.fetch`, via `web-sys` and **[wasm-bindgen](https://github.com/rustwasm/wasm-bindgen)**
101101
//! ```toml
102-
//! influxdb = { version = "0.5.0", default-features = false, features = ["derive", "use-serde", "wasm-client"] }
102+
//! influxdb = { version = "0.5.1", default-features = false, features = ["derive", "use-serde", "wasm-client"] }
103103
//! ```
104104
//!
105105
//! # License

0 commit comments

Comments
 (0)