Skip to content

Commit d5a383a

Browse files
authored
Update links (#98)
1 parent 3567457 commit d5a383a

File tree

9 files changed

+75
-85
lines changed

9 files changed

+75
-85
lines changed

CHANGELOG.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616

1717
### Fixed
1818

19-
- Fix deserialization of Series in case of no values ([@JEnoch](https://github.com/JEnoch) in [#75](https://github.com/Empty2k12/influxdb-rust/pull/75))
19+
- Fix deserialization of Series in case of no values ([@JEnoch](https://github.com/JEnoch) in [#75](https://github.com/influxdb-rs/influxdb-rust/pull/75))
2020

2121
### Added
2222

23-
- implement `#[influxdb(tag)]` and `#[influxdb(ignore)]` ([@blasrodri](https://github.com/blasrodri) in [#81](https://github.com/Empty2k12/influxdb-rust/pull/81))
23+
- implement `#[influxdb(tag)]` and `#[influxdb(ignore)]` ([@blasrodri](https://github.com/blasrodri) in [#81](https://github.com/influxdb-rs/influxdb-rust/pull/81))
2424

2525
`#[tag]` is now `#[influxdb(tag)]` and fields can be ignored with `#[influxdb(ignore)]`
2626

27-
- Batch write support ([@sunng87](https://github.com/sunng87) in [#87](https://github.com/Empty2k12/influxdb-rust/pull/87))
27+
- Batch write support ([@sunng87](https://github.com/sunng87) in [#87](https://github.com/influxdb-rs/influxdb-rust/pull/87))
2828

2929
Build a query containing mutliple rows to be inserted
3030
```
@@ -43,11 +43,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4343
4444
### Changed
4545
46-
- Assertion should consider case-insensitive keywords ([@rcastill](https://github.com/rcastill) in [#83](https://github.com/Empty2k12/influxdb-rust/pull/83))
46+
- Assertion should consider case-insensitive keywords ([@rcastill](https://github.com/rcastill) in [#83](https://github.com/influxdb-rs/influxdb-rust/pull/83))
4747
4848
`#[tag]` is now `#[influxdb(tag)]` and fields can be ignored with `#[influxdb(ignore)]`
4949
50-
- Add h1-client-rustls feature ([@JEnoch](https://github.com/JEnoch) in [#88](https://github.com/Empty2k12/influxdb-rust/pull/88))
50+
- Add h1-client-rustls feature ([@JEnoch](https://github.com/JEnoch) in [#88](https://github.com/influxdb-rs/influxdb-rust/pull/88))
5151
5252
Switch between multiple http backends as described in the [README.md](README.md#Choice-of-HTTP-backend)
5353
@@ -56,26 +56,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5656
5757
### Changed
5858
59-
- Internal request connection pooling ([@Robert-Steiner](https://github.com/Robert-Steiner) in [#73](https://github.com/Empty2k12/influxdb-rust/pull/73))
59+
- Internal request connection pooling ([@Robert-Steiner](https://github.com/Robert-Steiner) in [#73](https://github.com/influxdb-rs/influxdb-rust/pull/73))
6060
6161
Previously visible `Client` fields are now private. If you were using them before, please reference them from the creation of the Client.
6262
63-
- Support async-std ([@JEnoch](https://github.com/JEnoch) in [#72](https://github.com/Empty2k12/influxdb-rust/pull/72))
63+
- Support async-std ([@JEnoch](https://github.com/JEnoch) in [#72](https://github.com/influxdb-rs/influxdb-rust/pull/72))
6464
65-
The default backend is still Tokio, but if you're keen on switching, [other backends are exposed](https://github.com/Empty2k12/influxdb-rust/blob/master/influxdb/Cargo.toml) as Cargo features
65+
The default backend is still Tokio, but if you're keen on switching, [other backends are exposed](https://github.com/influxdb-rs/influxdb-rust/blob/main/influxdb/Cargo.toml) as Cargo features
6666
6767
## [0.2.0] - 2020-10-25
6868
6969
### Added
7070
71-
- Allow `GROUP BY` queries by providing `deserialize_next_tagged` to deserialize the group fields ([@SafariMonkey](https://github.com/SafariMonkey) in [#69](https://github.com/Empty2k12/influxdb-rust/pull/69))
72-
- Added `Default` for `series` in InfluxDb Response ([@SafariMonkey](https://github.com/SafariMonkey) in [#67](https://github.com/Empty2k12/influxdb-rust/pull/67))
73-
- `WriteQuery` and `ReadQuery` now derive `Debug` and `Clone` ([@jaredwolff](https://github.com/jaredwolff) in [#63](https://github.com/Empty2k12/influxdb-rust/pull/63))
71+
- Allow `GROUP BY` queries by providing `deserialize_next_tagged` to deserialize the group fields ([@SafariMonkey](https://github.com/SafariMonkey) in [#69](https://github.com/influxdb-rs/influxdb-rust/pull/69))
72+
- Added `Default` for `series` in InfluxDb Response ([@SafariMonkey](https://github.com/SafariMonkey) in [#67](https://github.com/influxdb-rs/influxdb-rust/pull/67))
73+
- `WriteQuery` and `ReadQuery` now derive `Debug` and `Clone` ([@jaredwolff](https://github.com/jaredwolff) in [#63](https://github.com/influxdb-rs/influxdb-rust/pull/63))
7474
7575
### Changed
7676
77-
- Replaced `failure` crate with `thiserror` crate ([@msrd0](https://github.com/msrd0) in [#70](https://github.com/Empty2k12/influxdb-rust/pull/70))
78-
- Deserialize series are now deserialized using field names not field order ([@SafariMonkey](https://github.com/SafariMonkey) in [#62](https://github.com/Empty2k12/influxdb-rust/pull/62))
77+
- Replaced `failure` crate with `thiserror` crate ([@msrd0](https://github.com/msrd0) in [#70](https://github.com/influxdb-rs/influxdb-rust/pull/70))
78+
- Deserialize series are now deserialized using field names not field order ([@SafariMonkey](https://github.com/SafariMonkey) in [#62](https://github.com/influxdb-rs/influxdb-rust/pull/62))
7979
- Due to InfluxDb inconsistencies between versions and ambiguities, `Timestamp::Now` has been removed. Please calculate the current timestamp since the epoch yourself and use the other available `Timestamp` values like so:
8080
8181
```
@@ -93,8 +93,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9393
9494
### Fixed
9595
96-
- Fixed quotation marks of tag values and escaping of field values ([@Robert-Steiner](https://github.com/Robert-Steiner) in [#68](https://github.com/Empty2k12/influxdb-rust/pull/68))
97-
- Fixed improper quoting on tag values when the value was text ([@sparky8251](https://github.com/sparky8251) in [#64](https://github.com/Empty2k12/influxdb-rust/pull/64))
96+
- Fixed quotation marks of tag values and escaping of field values ([@Robert-Steiner](https://github.com/Robert-Steiner) in [#68](https://github.com/influxdb-rs/influxdb-rust/pull/68))
97+
- Fixed improper quoting on tag values when the value was text ([@sparky8251](https://github.com/sparky8251) in [#64](https://github.com/influxdb-rs/influxdb-rust/pull/64))
9898
9999
## [0.1.0] - 2020-03-17
100100
@@ -165,13 +165,13 @@ This release removes the prefix `InfluxDb` of most types in this library and ree
165165
- Improved Test Coverage: There's now even more tests verifying correctness of the crate (#5)
166166
- 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)`
167167
168-
[unreleased]: https://github.com/Empty2k12/influxdb-rust/compare/v0.4.0...HEAD
169-
[0.4.0]: https://github.com/Empty2k12/influxdb-rust/compare/v0.3.0...v0.4.0
170-
[0.3.0]: https://github.com/Empty2k12/influxdb-rust/compare/v0.2.0...v0.3.0
171-
[0.2.0]: https://github.com/Empty2k12/influxdb-rust/compare/v0.1.0...v0.2.0
172-
[0.1.0]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.6...v0.1.0
173-
[0.0.5]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.5...v0.0.6
174-
[0.0.5]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.4...v0.0.5
175-
[0.0.4]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.3...v0.0.4
176-
[0.0.3]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.2...v0.0.3
177-
[0.0.2]: https://github.com/Empty2k12/influxdb-rust/releases/tag/v0.0.2
168+
[unreleased]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.4.0...HEAD
169+
[0.4.0]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.3.0...v0.4.0
170+
[0.3.0]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.2.0...v0.3.0
171+
[0.2.0]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.1.0...v0.2.0
172+
[0.1.0]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.0.6...v0.1.0
173+
[0.0.5]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.0.5...v0.0.6
174+
[0.0.5]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.0.4...v0.0.5
175+
[0.0.4]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.0.3...v0.0.4
176+
[0.0.3]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.0.2...v0.0.3
177+
[0.0.2]: https://github.com/influxdb-rs/influxdb-rust/releases/tag/v0.0.2

0 commit comments

Comments
 (0)