Skip to content

Commit 5ee6d8e

Browse files
committed
Release 0.0.4
1 parent 7a12894 commit 5ee6d8e

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

Diff for: CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.0.4] - 2019-08-16
11+
12+
### Added
13+
14+
- Possibility to authenticate against a InfluxDb instance (many thanks [@valkum](https://github.com/valkum))
15+
1016
## [0.0.3] - 2019-07-14
1117

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

29-
[unreleased]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.3...HEAD
35+
[unreleased]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.4...HEAD
36+
[0.0.4]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.3...v0.0.4
3037
[0.0.3]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.2...v0.0.3
3138
[0.0.2]: https://github.com/Empty2k12/influxdb-rust/releases/tag/v0.0.2

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,19 @@ Pull requests are always welcome.
3838
- Reading and Writing to InfluxDB
3939
- Optional Serde Support for Deserialization
4040
- Running multiple queries in one request (e.g. `SELECT * FROM weather_berlin; SELECT * FROM weather_london`)
41+
- Authenticated and Unauthenticated Connections
4142

4243
## Planned Features
4344

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

4848
## Quickstart
4949

5050
Add the following to your `Cargo.toml`
5151

5252
```toml
53-
influxdb = "0.0.3"
53+
influxdb = "0.0.4"
5454
```
5555

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

0 commit comments

Comments
 (0)