Skip to content

Commit

Permalink
Release 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Empty2k12 committed Aug 16, 2019
1 parent 7a12894 commit 5ee6d8e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.4] - 2019-08-16

### Added

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

## [0.0.3] - 2019-07-14

### Added
Expand All @@ -26,6 +32,7 @@ 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::<Weather>(query)` instead of `client.json_query::<Weather, *>(query)`

[unreleased]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.3...HEAD
[unreleased]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.4...HEAD
[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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,19 @@ Pull requests are always welcome.
- Reading and Writing to InfluxDB
- Optional Serde Support for Deserialization
- Running multiple queries in one request (e.g. `SELECT * FROM weather_berlin; SELECT * FROM weather_london`)
- Authenticated and Unauthenticated Connections

## Planned Features

- Read Query Builder instead of supplying raw queries
- Authentication against InfluxDB
- `#[derive(InfluxDbWritable)]`

## Quickstart

Add the following to your `Cargo.toml`

```toml
influxdb = "0.0.3"
influxdb = "0.0.4"
```

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

0 comments on commit 5ee6d8e

Please sign in to comment.