You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
### Added
11
11
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))
Copy file name to clipboardExpand all lines: README.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ Pull requests are always welcome. See [Contributing](https://github.com/influxdb
52
52
Add the following to your `Cargo.toml`
53
53
54
54
```toml
55
-
influxdb = { version = "0.5.0", features = ["derive"] }
55
+
influxdb = { version = "0.5.1", features = ["derive"] }
56
56
```
57
57
58
58
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
105
105
106
106
-**[hyper](https://github.com/hyperium/hyper)** (through reqwest, used by default), with [rustls](https://github.com/ctz/rustls)
107
107
```toml
108
-
influxdb = { version = "0.5.0", features = ["derive"] }
108
+
influxdb = { version = "0.5.1", features = ["derive"] }
109
109
```
110
110
111
111
-**[hyper](https://github.com/hyperium/hyper)** (through reqwest), with native TLS (OpenSSL)
112
112
```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"] }
114
114
```
115
115
116
116
-**[hyper](https://github.com/hyperium/hyper)** (through surf), use this if you need tokio 0.2 compatibility
117
117
```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"] }
119
119
```
120
120
-**[curl](https://github.com/alexcrichton/curl-rust)**, using [libcurl](https://curl.se/libcurl/)
121
121
```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"] }
123
123
```
124
124
-**[async-h1](https://github.com/http-rs/async-h1)** with native TLS (OpenSSL)
125
125
```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"] }
127
127
```
128
128
-**[async-h1](https://github.com/http-rs/async-h1)** with [rustls](https://github.com/ctz/rustls)
129
129
```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"] }
131
131
```
132
132
- WebAssembly's `window.fetch`, via `web-sys` and **[wasm-bindgen](https://github.com/rustwasm/wasm-bindgen)**
133
133
```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"] }
Copy file name to clipboardExpand all lines: influxdb/src/lib.rs
+8-8
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@
20
20
//! Add the following to your `Cargo.toml`
21
21
//!
22
22
//! ```toml
23
-
//! influxdb = { version = "0.5.0", features = ["derive"] }
23
+
//! influxdb = { version = "0.5.1", features = ["derive"] }
24
24
//! ```
25
25
//!
26
26
//! For an example with using Serde deserialization, please refer to [serde_integration](crate::integrations::serde_integration)
@@ -73,33 +73,33 @@
73
73
//!
74
74
//! - **[hyper](https://github.com/hyperium/hyper)** (through reqwest, used by default), with [rustls](https://github.com/ctz/rustls)
75
75
//! ```toml
76
-
//! influxdb = { version = "0.5.0", features = ["derive"] }
76
+
//! influxdb = { version = "0.5.1", features = ["derive"] }
77
77
//! ```
78
78
//!
79
79
//! - **[hyper](https://github.com/hyperium/hyper)** (through reqwest), with native TLS (OpenSSL)
80
80
//! ```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"] }
82
82
//! ```
83
83
//!
84
84
//! - **[hyper](https://github.com/hyperium/hyper)** (through surf), use this if you need tokio 0.2 compatibility
85
85
//! ```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"] }
87
87
//! ```
88
88
//! - **[curl](https://github.com/alexcrichton/curl-rust)**, using [libcurl](https://curl.se/libcurl/)
89
89
//! ```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"] }
91
91
//! ```
92
92
//! - **[async-h1](https://github.com/http-rs/async-h1)** with native TLS (OpenSSL)
93
93
//! ```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"] }
95
95
//! ```
96
96
//! - **[async-h1](https://github.com/http-rs/async-h1)** with [rustls](https://github.com/ctz/rustls)
97
97
//! ```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"] }
99
99
//! ```
100
100
//! - WebAssembly's `window.fetch`, via `web-sys` and **[wasm-bindgen](https://github.com/rustwasm/wasm-bindgen)**
101
101
//! ```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"] }
0 commit comments