diff --git a/CHANGELOG.md b/CHANGELOG.md index c9185aa..1a41798 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.5] - 2019-08-16 + +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`. + +### Added + +- Switch to `cargo-readme` for README generation ([@senden9](https://github.com/senden9)) +- Contributing Guidelines, Code of Conduct and Issue Templates + +### Changed + +- Removed dependency `itertools` ([@mvucenovic](https://github.com/mvucenovic)) +- Replace internal representation in query of `Any` by an enum ([@pcpthm](https://github.com/pcpthm)) +- Remove `InfluxDb` in type names +- Replace ToString with Into + +### Fixed + +- Fix Crates.io detecting license incorrectly ([@mimetypes](https://github.com/mimetypes)) +- Don't commit Cargo.lock ([@msrd0](https://github.com/msrd0)) +- Fix and Enforce Clippy Lints ([@msrd0](https://github.com/msrd0)) + ## [0.0.4] - 2019-08-16 ### Added -- Possibility to authenticate against a InfluxDb instance (many thanks [@valkum](https://github.com/valkum)) +- Possibility to authenticate against a InfluxDb instance ([@valkum](https://github.com/valkum)) ## [0.0.3] - 2019-07-14 @@ -32,7 +54,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - 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::(query)` instead of `client.json_query::(query)` -[unreleased]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.4...HEAD +[unreleased]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.5...HEAD +[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 [0.0.2]: https://github.com/Empty2k12/influxdb-rust/releases/tag/v0.0.2 diff --git a/Cargo.toml b/Cargo.toml index 94b4059..97dc892 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "influxdb" -version = "0.0.4" +version = "0.0.5" authors = ["Gero Gerke <11deutron11@gmail.com>"] edition = "2018" description = "InfluxDB Driver for Rust" diff --git a/src/lib.rs b/src/lib.rs index fdc7a3a..ff60566 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -21,7 +21,7 @@ //! Add the following to your `Cargo.toml` //! //! ```toml -//! influxdb = "0.0.4" +//! influxdb = "0.0.5" //! ``` //! //! For an example with using Serde deserialization, please refer to [serde_integration](crate::integrations::serde_integration)