Skip to content

Commit 9540e09

Browse files
committed
Release influxdb 0.7.0
1 parent 340ec12 commit 9540e09

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.7.0] - 2023-07-03
11+
12+
### Changed
13+
- Opt-in Line-Protocol for Compatibility Mode ([#123](https://github.com/influxdb-rs/influxdb-rust/pull/123))
14+
- Use cargo doc2readme instead of cargo readme ([#125](https://github.com/influxdb-rs/influxdb-rust/pull/125))
15+
1016
## [0.6.0] - 2023-03-04
1117

1218
### Changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Add the following to your `Cargo.toml`
5555

5656

5757
```toml
58-
influxdb = { version = "0.6.0", features = ["derive"] }
58+
influxdb = { version = "0.7.0", features = ["derive"] }
5959
```
6060

6161
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
116116

117117
- **[hyper][__link5]** (through reqwest, used by default), with [rustls][__link6]
118118
```toml
119-
influxdb = { version = "0.6.0", features = ["derive"] }
119+
influxdb = { version = "0.7.0", features = ["derive"] }
120120
```
121121

122122

123123
- **[hyper][__link7]** (through reqwest), with native TLS (OpenSSL)
124124
```toml
125-
influxdb = { version = "0.6.0", default-features = false,features = ["derive", "use-serde", "reqwest-client"] }
125+
influxdb = { version = "0.7.0", default-features = false,features = ["derive", "use-serde", "reqwest-client"] }
126126
```
127127

128128

129129
- **[hyper][__link8]** (through surf), use this if you need tokio 0.2 compatibility
130130
```toml
131-
influxdb = { version = "0.6.0", default-features = false,features = ["derive", "use-serde", "hyper-client"] }
131+
influxdb = { version = "0.7.0", default-features = false,features = ["derive", "use-serde", "hyper-client"] }
132132
```
133133

134134

135135
- **[curl][__link9]**, using [libcurl][__link10]
136136
```toml
137-
influxdb = { version = "0.6.0", default-features = false,features = ["derive", "use-serde", "curl-client"] }
137+
influxdb = { version = "0.7.0", default-features = false,features = ["derive", "use-serde", "curl-client"] }
138138
```
139139

140140

141141
- **[async-h1][__link11]** with native TLS (OpenSSL)
142142
```toml
143-
influxdb = { version = "0.6.0", default-features = false,features = ["derive", "use-serde", "h1-client"] }
143+
influxdb = { version = "0.7.0", default-features = false,features = ["derive", "use-serde", "h1-client"] }
144144
```
145145

146146

147147
- **[async-h1][__link12]** with [rustls][__link13]
148148
```toml
149-
influxdb = { version = "0.6.0", default-features = false,features = ["derive", "use-serde", "h1-client-rustls"] }
149+
influxdb = { version = "0.7.0", default-features = false,features = ["derive", "use-serde", "h1-client-rustls"] }
150150
```
151151

152152

153153
- WebAssembly’s `window.fetch`, via `web-sys` and **[wasm-bindgen][__link14]**
154154
```toml
155-
influxdb = { version = "0.6.0", default-features = false,features = ["derive", "use-serde", "wasm-client"] }
155+
influxdb = { version = "0.7.0", default-features = false,features = ["derive", "use-serde", "wasm-client"] }
156156
```
157157

158158

@@ -167,7 +167,7 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu
167167
@ 2020 Gero Gerke and [contributors].
168168

169169
[contributors]: https://github.com/influxdb-rs/influxdb-rust/graphs/contributors
170-
[__cargo_doc2readme_dependencies_info]: ggGkYW0BYXSEG-eS3ZnLalPKG8RSyE7OgxOuG5N_7FO9S6I9G5Bq0rFyX93cYXKEGyBiJeIUzlcaG-d2lJz85cl_G-crYZ-mhyAvG6Wf1YbqYiItYWSBgmhpbmZsdXhkYmUwLjYuMA
170+
[__cargo_doc2readme_dependencies_info]: ggGkYW0BYXSEG-eS3ZnLalPKG8RSyE7OgxOuG5N_7FO9S6I9G5Bq0rFyX93cYXKEG5PjkhkfWGqnG0oaNZtY0rqCG3UxTXMZvJknG2Qnb8mp1lIsYWSBgmhpbmZsdXhkYmUwLjcuMA
171171
[__link0]: https://github.com/influxdb-rs/influxdb-rust/blob/main/CONTRIBUTING.md
172172
[__link1]: https://github.com/influxdb-rs/influxdb-rust/blob/main/CODE_OF_CONDUCT.md
173173
[__link10]: https://curl.se/libcurl/
@@ -179,7 +179,7 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu
179179
[__link16]: https://opensource.org/licenses/MIT
180180
[__link2]: https://github.com/influxdb-rs/influxdb-rust/blob/main/CHANGELOG.md
181181
[__link3]: https://github.com/influxdb-rs/influxdb-rust/blob/main/influxdb/Cargo.toml
182-
[__link4]: https://docs.rs/influxdb/0.6.0/influxdb/?search=integrations::serde_integration
182+
[__link4]: https://docs.rs/influxdb/0.7.0/influxdb/?search=integrations::serde_integration
183183
[__link5]: https://github.com/hyperium/hyper
184184
[__link6]: https://github.com/ctz/rustls
185185
[__link7]: https://github.com/hyperium/hyper

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.6.0"
5+
version = "0.7.0"
66
authors = ["Gero Gerke <[email protected]>"]
77
edition = "2018"
88
description = "InfluxDB Driver for Rust"

0 commit comments

Comments
 (0)