Skip to content

Commit 8da3df8

Browse files
committed
Release 0.0.5
1 parent 0f615aa commit 8da3df8

File tree

3 files changed

+27
-4
lines changed

3 files changed

+27
-4
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.0.5] - 2019-08-16
11+
12+
This release removes the prefix `InfluxDb` of most types in this library and reexports the types under the `influxdb::` path. In most cases, you can directly use the types now: e.g. `influxdb::Client` vs `influxdb::client::InfluxDbClient`.
13+
14+
### Added
15+
16+
- Switch to `cargo-readme` for README generation ([@senden9](https://github.com/senden9))
17+
- Contributing Guidelines, Code of Conduct and Issue Templates
18+
19+
### Changed
20+
21+
- Removed dependency `itertools` ([@mvucenovic](https://github.com/mvucenovic))
22+
- Replace internal representation in query of `Any` by an enum ([@pcpthm](https://github.com/pcpthm))
23+
- Remove `InfluxDb` in type names
24+
- Replace ToString with Into<String>
25+
26+
### Fixed
27+
28+
- Fix Crates.io detecting license incorrectly ([@mimetypes](https://github.com/mimetypes))
29+
- Don't commit Cargo.lock ([@msrd0](https://github.com/msrd0))
30+
- Fix and Enforce Clippy Lints ([@msrd0](https://github.com/msrd0))
31+
1032
## [0.0.4] - 2019-08-16
1133

1234
### Added
1335

14-
- Possibility to authenticate against a InfluxDb instance (many thanks [@valkum](https://github.com/valkum))
36+
- Possibility to authenticate against a InfluxDb instance ([@valkum](https://github.com/valkum))
1537

1638
## [0.0.3] - 2019-07-14
1739

@@ -32,7 +54,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3254
- Improved Test Coverage: There's now even more tests verifying correctness of the crate (#5)
3355
- 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)`
3456

35-
[unreleased]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.4...HEAD
57+
[unreleased]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.5...HEAD
58+
[0.0.5]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.5...v0.0.5
3659
[0.0.4]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.3...v0.0.4
3760
[0.0.3]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.2...v0.0.3
3861
[0.0.2]: https://github.com/Empty2k12/influxdb-rust/releases/tag/v0.0.2

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "influxdb"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
authors = ["Gero Gerke <[email protected]>"]
55
edition = "2018"
66
description = "InfluxDB Driver for Rust"

src/lib.rs

+1-1
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 = "0.0.4"
24+
//! influxdb = "0.0.5"
2525
//! ```
2626
//!
2727
//! For an example with using Serde deserialization, please refer to [serde_integration](crate::integrations::serde_integration)

0 commit comments

Comments
 (0)