Skip to content

Commit 92d62c0

Browse files
committed
Release influxdb 0.6.0
1 parent 597fdff commit 92d62c0

File tree

4 files changed

+24
-18
lines changed

4 files changed

+24
-18
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.6.0] - 2023-03-04
11+
12+
### Changed
13+
- Unsigned integers are no longer treated as signed integers ([#113](https://github.com/influxdb-rs/influxdb-rust/pull/113))
14+
1015
### Added
16+
- Support for token auth ([#118](https://github.com/influxdb-rs/influxdb-rust/pull/118))
1117

1218
## [0.5.2] - 2022-02-04
1319

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Pull requests are always welcome. See [Contributing](https://github.com/influxdb
5353
Add the following to your `Cargo.toml`
5454

5555
```toml
56-
influxdb = { version = "0.5.2", features = ["derive"] }
56+
influxdb = { version = "0.6", features = ["derive"] }
5757
```
5858

5959
For an example with using Serde deserialization, please refer to [serde_integration](crate::integrations::serde_integration)
@@ -113,33 +113,33 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu
113113

114114
- **[hyper](https://github.com/hyperium/hyper)** (through reqwest, used by default), with [rustls](https://github.com/ctz/rustls)
115115
```toml
116-
influxdb = { version = "0.5.2", features = ["derive"] }
116+
influxdb = { version = "0.6", features = ["derive"] }
117117
```
118118

119119
- **[hyper](https://github.com/hyperium/hyper)** (through reqwest), with native TLS (OpenSSL)
120120
```toml
121-
influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "reqwest-client"] }
121+
influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "reqwest-client"] }
122122
```
123123

124124
- **[hyper](https://github.com/hyperium/hyper)** (through surf), use this if you need tokio 0.2 compatibility
125125
```toml
126-
influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "curl-client"] }
126+
influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "curl-client"] }
127127
```
128128
- **[curl](https://github.com/alexcrichton/curl-rust)**, using [libcurl](https://curl.se/libcurl/)
129129
```toml
130-
influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "curl-client"] }
130+
influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "curl-client"] }
131131
```
132132
- **[async-h1](https://github.com/http-rs/async-h1)** with native TLS (OpenSSL)
133133
```toml
134-
influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "h1-client"] }
134+
influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "h1-client"] }
135135
```
136136
- **[async-h1](https://github.com/http-rs/async-h1)** with [rustls](https://github.com/ctz/rustls)
137137
```toml
138-
influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "h1-client-rustls"] }
138+
influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "h1-client-rustls"] }
139139
```
140140
- WebAssembly's `window.fetch`, via `web-sys` and **[wasm-bindgen](https://github.com/rustwasm/wasm-bindgen)**
141141
```toml
142-
influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "wasm-client"] }
142+
influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "wasm-client"] }
143143
```
144144

145145
## License

influxdb/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "influxdb"
5-
version = "0.5.2"
5+
version = "0.6.0"
66
authors = ["Gero Gerke <[email protected]>"]
77
edition = "2018"
88
description = "InfluxDB Driver for Rust"
@@ -13,7 +13,7 @@ include = ["src/**/*", "tests/**/*", "Cargo.toml", "LICENSE"]
1313
repository = "https://github.com/influxdb-rs/influxdb-rust"
1414

1515
[dependencies]
16-
chrono = { version = "0.4.11", features = ["serde"], default-features = false }
16+
chrono = { version = "0.4.23", features = ["serde"], default-features = false }
1717
futures-util = "0.3.17"
1818
http = "0.2.4"
1919
influxdb_derive = { version = "0.5.0", optional = true }

influxdb/src/lib.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
//! Add the following to your `Cargo.toml`
2222
//!
2323
//! ```toml
24-
//! influxdb = { version = "0.5.2", features = ["derive"] }
24+
//! influxdb = { version = "0.6", features = ["derive"] }
2525
//! ```
2626
//!
2727
//! For an example with using Serde deserialization, please refer to [serde_integration](crate::integrations::serde_integration)
@@ -81,33 +81,33 @@
8181
//!
8282
//! - **[hyper](https://github.com/hyperium/hyper)** (through reqwest, used by default), with [rustls](https://github.com/ctz/rustls)
8383
//! ```toml
84-
//! influxdb = { version = "0.5.2", features = ["derive"] }
84+
//! influxdb = { version = "0.6", features = ["derive"] }
8585
//! ```
8686
//!
8787
//! - **[hyper](https://github.com/hyperium/hyper)** (through reqwest), with native TLS (OpenSSL)
8888
//! ```toml
89-
//! influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "reqwest-client"] }
89+
//! influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "reqwest-client"] }
9090
//! ```
9191
//!
9292
//! - **[hyper](https://github.com/hyperium/hyper)** (through surf), use this if you need tokio 0.2 compatibility
9393
//! ```toml
94-
//! influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "curl-client"] }
94+
//! influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "curl-client"] }
9595
//! ```
9696
//! - **[curl](https://github.com/alexcrichton/curl-rust)**, using [libcurl](https://curl.se/libcurl/)
9797
//! ```toml
98-
//! influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "curl-client"] }
98+
//! influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "curl-client"] }
9999
//! ```
100100
//! - **[async-h1](https://github.com/http-rs/async-h1)** with native TLS (OpenSSL)
101101
//! ```toml
102-
//! influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "h1-client"] }
102+
//! influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "h1-client"] }
103103
//! ```
104104
//! - **[async-h1](https://github.com/http-rs/async-h1)** with [rustls](https://github.com/ctz/rustls)
105105
//! ```toml
106-
//! influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "h1-client-rustls"] }
106+
//! influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "h1-client-rustls"] }
107107
//! ```
108108
//! - WebAssembly's `window.fetch`, via `web-sys` and **[wasm-bindgen](https://github.com/rustwasm/wasm-bindgen)**
109109
//! ```toml
110-
//! influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "wasm-client"] }
110+
//! influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "wasm-client"] }
111111
//! ```
112112
//!
113113
//! # License

0 commit comments

Comments
 (0)