Skip to content

Commit

Permalink
Release influxdb 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
msrd0 committed Jul 3, 2023
1 parent 340ec12 commit 9540e09
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0] - 2023-07-03

### Changed
- Opt-in Line-Protocol for Compatibility Mode ([#123](https://github.com/influxdb-rs/influxdb-rust/pull/123))
- Use cargo doc2readme instead of cargo readme ([#125](https://github.com/influxdb-rs/influxdb-rust/pull/125))

## [0.6.0] - 2023-03-04

### Changed
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Add the following to your `Cargo.toml`


```toml
influxdb = { version = "0.6.0", features = ["derive"] }
influxdb = { version = "0.7.0", features = ["derive"] }
```

For an example with using Serde deserialization, please refer to [serde_integration][__link4]
Expand Down Expand Up @@ -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.6.0", features = ["derive"] }
influxdb = { version = "0.7.0", features = ["derive"] }
```


- **[hyper][__link7]** (through reqwest), with native TLS (OpenSSL)
```toml
influxdb = { version = "0.6.0", default-features = false,features = ["derive", "use-serde", "reqwest-client"] }
influxdb = { version = "0.7.0", 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.6.0", default-features = false,features = ["derive", "use-serde", "hyper-client"] }
influxdb = { version = "0.7.0", default-features = false,features = ["derive", "use-serde", "hyper-client"] }
```


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


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


- **[async-h1][__link12]** with [rustls][__link13]
```toml
influxdb = { version = "0.6.0", default-features = false,features = ["derive", "use-serde", "h1-client-rustls"] }
influxdb = { version = "0.7.0", 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.6.0", default-features = false,features = ["derive", "use-serde", "wasm-client"] }
influxdb = { version = "0.7.0", default-features = false,features = ["derive", "use-serde", "wasm-client"] }
```


Expand All @@ -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]: ggGkYW0BYXSEG-eS3ZnLalPKG8RSyE7OgxOuG5N_7FO9S6I9G5Bq0rFyX93cYXKEGyBiJeIUzlcaG-d2lJz85cl_G-crYZ-mhyAvG6Wf1YbqYiItYWSBgmhpbmZsdXhkYmUwLjYuMA
[__cargo_doc2readme_dependencies_info]: ggGkYW0BYXSEG-eS3ZnLalPKG8RSyE7OgxOuG5N_7FO9S6I9G5Bq0rFyX93cYXKEG5PjkhkfWGqnG0oaNZtY0rqCG3UxTXMZvJknG2Qnb8mp1lIsYWSBgmhpbmZsdXhkYmUwLjcuMA
[__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/
Expand All @@ -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.6.0/influxdb/?search=integrations::serde_integration
[__link4]: https://docs.rs/influxdb/0.7.0/influxdb/?search=integrations::serde_integration
[__link5]: https://github.com/hyperium/hyper
[__link6]: https://github.com/ctz/rustls
[__link7]: https://github.com/hyperium/hyper
Expand Down
2 changes: 1 addition & 1 deletion influxdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "influxdb"
version = "0.6.0"
version = "0.7.0"
authors = ["Gero Gerke <[email protected]>"]
edition = "2018"
description = "InfluxDB Driver for Rust"
Expand Down

0 comments on commit 9540e09

Please sign in to comment.