Skip to content

Commit cba862d

Browse files
authored
Release v0.0.6 (#47)
* Prepare Release 0.0.6 * Format and Lint Fixes
1 parent 1b0cae1 commit cba862d

File tree

5 files changed

+245
-266
lines changed

5 files changed

+245
-266
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.0.6] - 2020-02-07
11+
1012
### Changed
1113

12-
- Rewrite to `async` / `await`. Rust 1.39 is now the minimum required Rust version.
14+
- Rewrite to `async` / `await`. Rust 1.39 is now the minimum required Rust version.
1315

1416
## [0.0.5] - 2019-08-16
1517

@@ -58,7 +60,8 @@ This release removes the prefix `InfluxDb` of most types in this library and ree
5860
- Improved Test Coverage: There's now even more tests verifying correctness of the crate (#5)
5961
- It's no longer necessary to supply a wildcard generic when working with serde*integration: `client.json_query::<Weather>(query)` instead of `client.json_query::<Weather, *>(query)`
6062

61-
[unreleased]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.5...HEAD
63+
[unreleased]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.6...HEAD
64+
[0.0.5]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.5...v0.0.6
6265
[0.0.5]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.5...v0.0.5
6366
[0.0.4]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.3...v0.0.4
6467
[0.0.3]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.2...v0.0.3

Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "influxdb"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
authors = ["Gero Gerke <[email protected]>"]
55
edition = "2018"
66
description = "InfluxDB Driver for Rust"
@@ -14,17 +14,17 @@ repository = "https://github.com/Empty2k12/influxdb-rust"
1414
travis-ci = { repository = "Empty2k12/influxdb-rust", branch = "master" }
1515

1616
[dependencies]
17-
chrono = { version = "0.4.9", optional = true }
18-
failure = "0.1.5"
19-
futures = "0.3.1"
20-
reqwest = { version = "0.10", features = ["json"] }
21-
serde = { version = "1.0.92", features = ["derive"], optional = true }
22-
serde_json = { version = "1.0", optional = true }
17+
chrono = { version = "0.4.10", optional = true }
18+
failure = "0.1.6"
19+
futures = "0.3.4"
20+
reqwest = { version = "0.10.1", features = ["json"] }
21+
serde = { version = "1.0.104", features = ["derive"], optional = true }
22+
serde_json = { version = "1.0.46", optional = true }
2323

2424
[features]
2525
use-serde = ["serde", "serde_json"]
2626
chrono_timestamps = ["chrono"]
2727
default = ["use-serde"]
2828

2929
[dev-dependencies]
30-
tokio = { version = "0.2", features = ["macros"] }
30+
tokio = { version = "0.2.11", features = ["macros"] }

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ Pull requests are always welcome. See [Contributing](https://github.com/Empty2k1
4040
- Running multiple queries in one request (e.g. `SELECT * FROM weather_berlin; SELECT * FROM weather_london`)
4141
- Authenticated and Unauthenticated Connections
4242
- Optional conversion between `Timestamp` and `Chrono::DateTime<Utc>` via `chrono_timestamps` compilation feature
43+
- `async`/`await` support
44+
4345
### Planned Features
4446

4547
- Read Query Builder instead of supplying raw queries
@@ -50,7 +52,7 @@ Pull requests are always welcome. See [Contributing](https://github.com/Empty2k1
5052
Add the following to your `Cargo.toml`
5153

5254
```toml
53-
influxdb = "0.0.5"
55+
influxdb = "0.0.6"
5456
```
5557

5658
For an example with using Serde deserialization, please refer to [serde_integration](crate::integrations::serde_integration)

src/lib.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
//! - Running multiple queries in one request (e.g. `SELECT * FROM weather_berlin; SELECT * FROM weather_london`)
1212
//! - Authenticated and Unauthenticated Connections
1313
//! - Optional conversion between `Timestamp` and `Chrono::DateTime<Utc>` via `chrono_timestamps` compilation feature
14+
//! - `async`/`await` support
15+
//!
1416
//! ## Planned Features
1517
//!
1618
//! - Read Query Builder instead of supplying raw queries
@@ -21,7 +23,7 @@
2123
//! Add the following to your `Cargo.toml`
2224
//!
2325
//! ```toml
24-
//! influxdb = "0.0.5"
26+
//! influxdb = "0.0.6"
2527
//! ```
2628
//!
2729
//! For an example with using Serde deserialization, please refer to [serde_integration](crate::integrations::serde_integration)

0 commit comments

Comments
 (0)