Skip to content

Commit

Permalink
Release influxdb 0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
msrd0 committed Feb 14, 2024
1 parent 2bc0934 commit f3470e3
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.2] - 2024-02-14

### Fixed
- Fixed incorrect timestamp when using nanosecond precision with chrono ([#134](https://github.com/influxdb-rs/influxdb-rust/pull/134))

## [0.7.1] - 2023-09-08

### Added
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.7.1", features = ["derive"] }
influxdb = { version = "0.7.2", features = ["derive"] }
```

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


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


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


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


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


Expand All @@ -166,7 +166,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_Yk-0hvrVPoG-pGw0Sym8kbG2s5Ga25QGRAG6zgaYax6AfsYXKEGzTIyZ81-O7yGzBPOAorSf5GGwJWIVB6K85jG41Hl-f5lXJVYWSBgmhpbmZsdXhkYmUwLjcuMQ
[__cargo_doc2readme_dependencies_info]: ggGkYW0BYXSEG_Yk-0hvrVPoG-pGw0Sym8kbG2s5Ga25QGRAG6zgaYax6AfsYXKEG5FQA0msUh34G1V6qHa_8CeQG66nRf4Jd7PiG99LD0P5Tiz5YWSBgmhpbmZsdXhkYmUwLjcuMg
[__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 @@ -178,7 +178,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.1/influxdb/?search=integrations::serde_integration
[__link4]: https://docs.rs/influxdb/0.7.2/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.7.1"
version = "0.7.2"
authors = ["Gero Gerke <[email protected]>"]
edition = "2018"
description = "InfluxDB Driver for Rust"
Expand Down

0 comments on commit f3470e3

Please sign in to comment.