Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit cba862d

Browse files
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‎

Lines changed: 5 additions & 2 deletions
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‎

Lines changed: 8 additions & 8 deletions
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 <11deutron11@gmail.com>"]
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‎

Lines changed: 3 additions & 1 deletion
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‎

Lines changed: 3 additions & 1 deletion
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)

AltStyle によって変換されたページ (->オリジナル) /