Skip to content

Commit f3470e3

Browse files
committed
Release influxdb 0.7.2
1 parent 2bc0934 commit f3470e3

File tree

3 files changed

+16
-11
lines changed

3 files changed

+16
-11
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.7.2] - 2024-02-14
11+
12+
### Fixed
13+
- Fixed incorrect timestamp when using nanosecond precision with chrono ([#134](https://github.com/influxdb-rs/influxdb-rust/pull/134))
14+
1015
## [0.7.1] - 2023-09-08
1116

1217
### Added

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.7.1", features = ["derive"] }
58+
influxdb = { version = "0.7.2", features = ["derive"] }
5959
```
6060

6161
For an example with using Serde deserialization, please refer to [serde_integration][__link4]
@@ -115,43 +115,43 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu
115115

116116
- **[hyper][__link5]** (through reqwest, used by default), with [rustls][__link6]
117117
```toml
118-
influxdb = { version = "0.7.1", features = ["derive"] }
118+
influxdb = { version = "0.7.2", features = ["derive"] }
119119
```
120120

121121

122122
- **[hyper][__link7]** (through reqwest), with native TLS (OpenSSL)
123123
```toml
124-
influxdb = { version = "0.7.1", default-features = false,features = ["derive", "use-serde", "reqwest-client"] }
124+
influxdb = { version = "0.7.2", default-features = false,features = ["derive", "use-serde", "reqwest-client"] }
125125
```
126126

127127

128128
- **[hyper][__link8]** (through surf), use this if you need tokio 0.2 compatibility
129129
```toml
130-
influxdb = { version = "0.7.1", default-features = false,features = ["derive", "use-serde", "hyper-client"] }
130+
influxdb = { version = "0.7.2", default-features = false,features = ["derive", "use-serde", "hyper-client"] }
131131
```
132132

133133

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

139139

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

145145

146146
- **[async-h1][__link12]** with [rustls][__link13]
147147
```toml
148-
influxdb = { version = "0.7.1", default-features = false,features = ["derive", "use-serde", "h1-client-rustls"] }
148+
influxdb = { version = "0.7.2", default-features = false,features = ["derive", "use-serde", "h1-client-rustls"] }
149149
```
150150

151151

152152
- WebAssembly’s `window.fetch`, via `web-sys` and **[wasm-bindgen][__link14]**
153153
```toml
154-
influxdb = { version = "0.7.1", default-features = false,features = ["derive", "use-serde", "wasm-client"] }
154+
influxdb = { version = "0.7.2", default-features = false,features = ["derive", "use-serde", "wasm-client"] }
155155
```
156156

157157

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

168168
[contributors]: https://github.com/influxdb-rs/influxdb-rust/graphs/contributors
169-
[__cargo_doc2readme_dependencies_info]: ggGkYW0BYXSEG_Yk-0hvrVPoG-pGw0Sym8kbG2s5Ga25QGRAG6zgaYax6AfsYXKEGzTIyZ81-O7yGzBPOAorSf5GGwJWIVB6K85jG41Hl-f5lXJVYWSBgmhpbmZsdXhkYmUwLjcuMQ
169+
[__cargo_doc2readme_dependencies_info]: ggGkYW0BYXSEG_Yk-0hvrVPoG-pGw0Sym8kbG2s5Ga25QGRAG6zgaYax6AfsYXKEG5FQA0msUh34G1V6qHa_8CeQG66nRf4Jd7PiG99LD0P5Tiz5YWSBgmhpbmZsdXhkYmUwLjcuMg
170170
[__link0]: https://github.com/influxdb-rs/influxdb-rust/blob/main/CONTRIBUTING.md
171171
[__link1]: https://github.com/influxdb-rs/influxdb-rust/blob/main/CODE_OF_CONDUCT.md
172172
[__link10]: https://curl.se/libcurl/
@@ -178,7 +178,7 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu
178178
[__link16]: https://opensource.org/licenses/MIT
179179
[__link2]: https://github.com/influxdb-rs/influxdb-rust/blob/main/CHANGELOG.md
180180
[__link3]: https://github.com/influxdb-rs/influxdb-rust/blob/main/influxdb/Cargo.toml
181-
[__link4]: https://docs.rs/influxdb/0.7.1/influxdb/?search=integrations::serde_integration
181+
[__link4]: https://docs.rs/influxdb/0.7.2/influxdb/?search=integrations::serde_integration
182182
[__link5]: https://github.com/hyperium/hyper
183183
[__link6]: https://github.com/ctz/rustls
184184
[__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.7.1"
5+
version = "0.7.2"
66
authors = ["Gero Gerke <[email protected]>"]
77
edition = "2018"
88
description = "InfluxDB Driver for Rust"

0 commit comments

Comments
 (0)