Skip to content

Commit

Permalink
Release v0.0.6 (#47)
Browse files Browse the repository at this point in the history
* Prepare Release 0.0.6

* Format and Lint Fixes
  • Loading branch information
Empty2k12 authored Feb 7, 2020
1 parent 1b0cae1 commit cba862d
Show file tree
Hide file tree
Showing 5 changed files with 245 additions and 266 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.6] - 2020-02-07

### Changed

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

## [0.0.5] - 2019-08-16

Expand Down Expand Up @@ -58,7 +60,8 @@ This release removes the prefix `InfluxDb` of most types in this library and ree
- Improved Test Coverage: There's now even more tests verifying correctness of the crate (#5)
- 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)`

[unreleased]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.5...HEAD
[unreleased]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.6...HEAD
[0.0.5]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.5...v0.0.6
[0.0.5]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.5...v0.0.5
[0.0.4]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.3...v0.0.4
[0.0.3]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.2...v0.0.3
Expand Down
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "influxdb"
version = "0.0.5"
version = "0.0.6"
authors = ["Gero Gerke <[email protected]>"]
edition = "2018"
description = "InfluxDB Driver for Rust"
Expand All @@ -14,17 +14,17 @@ repository = "https://github.com/Empty2k12/influxdb-rust"
travis-ci = { repository = "Empty2k12/influxdb-rust", branch = "master" }

[dependencies]
chrono = { version = "0.4.9", optional = true }
failure = "0.1.5"
futures = "0.3.1"
reqwest = { version = "0.10", features = ["json"] }
serde = { version = "1.0.92", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
chrono = { version = "0.4.10", optional = true }
failure = "0.1.6"
futures = "0.3.4"
reqwest = { version = "0.10.1", features = ["json"] }
serde = { version = "1.0.104", features = ["derive"], optional = true }
serde_json = { version = "1.0.46", optional = true }

[features]
use-serde = ["serde", "serde_json"]
chrono_timestamps = ["chrono"]
default = ["use-serde"]

[dev-dependencies]
tokio = { version = "0.2", features = ["macros"] }
tokio = { version = "0.2.11", features = ["macros"] }
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ Pull requests are always welcome. See [Contributing](https://github.com/Empty2k1
- Running multiple queries in one request (e.g. `SELECT * FROM weather_berlin; SELECT * FROM weather_london`)
- Authenticated and Unauthenticated Connections
- Optional conversion between `Timestamp` and `Chrono::DateTime<Utc>` via `chrono_timestamps` compilation feature
- `async`/`await` support

### Planned Features

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

```toml
influxdb = "0.0.5"
influxdb = "0.0.6"
```

For an example with using Serde deserialization, please refer to [serde_integration](crate::integrations::serde_integration)
Expand Down
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
//! - Running multiple queries in one request (e.g. `SELECT * FROM weather_berlin; SELECT * FROM weather_london`)
//! - Authenticated and Unauthenticated Connections
//! - Optional conversion between `Timestamp` and `Chrono::DateTime<Utc>` via `chrono_timestamps` compilation feature
//! - `async`/`await` support
//!
//! ## Planned Features
//!
//! - Read Query Builder instead of supplying raw queries
Expand All @@ -21,7 +23,7 @@
//! Add the following to your `Cargo.toml`
//!
//! ```toml
//! influxdb = "0.0.5"
//! influxdb = "0.0.6"
//! ```
//!
//! For an example with using Serde deserialization, please refer to [serde_integration](crate::integrations::serde_integration)
Expand Down
Loading

0 comments on commit cba862d

Please sign in to comment.