diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c22428..1a8df9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,15 +16,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed -- Fix deserialization of Series in case of no values ([@JEnoch](https://github.com/JEnoch) in [#75](https://github.com/Empty2k12/influxdb-rust/pull/75)) +- 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)) ### Added -- implement `#[influxdb(tag)]` and `#[influxdb(ignore)]` ([@blasrodri](https://github.com/blasrodri) in [#81](https://github.com/Empty2k12/influxdb-rust/pull/81)) +- implement `#[influxdb(tag)]` and `#[influxdb(ignore)]` ([@blasrodri](https://github.com/blasrodri) in [#81](https://github.com/influxdb-rs/influxdb-rust/pull/81)) `#[tag]` is now `#[influxdb(tag)]` and fields can be ignored with `#[influxdb(ignore)]` -- Batch write support ([@sunng87](https://github.com/sunng87) in [#87](https://github.com/Empty2k12/influxdb-rust/pull/87)) +- Batch write support ([@sunng87](https://github.com/sunng87) in [#87](https://github.com/influxdb-rs/influxdb-rust/pull/87)) Build a query containing mutliple rows to be inserted ``` @@ -43,11 +43,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- Assertion should consider case-insensitive keywords ([@rcastill](https://github.com/rcastill) in [#83](https://github.com/Empty2k12/influxdb-rust/pull/83)) +- Assertion should consider case-insensitive keywords ([@rcastill](https://github.com/rcastill) in [#83](https://github.com/influxdb-rs/influxdb-rust/pull/83)) `#[tag]` is now `#[influxdb(tag)]` and fields can be ignored with `#[influxdb(ignore)]` -- Add h1-client-rustls feature ([@JEnoch](https://github.com/JEnoch) in [#88](https://github.com/Empty2k12/influxdb-rust/pull/88)) +- Add h1-client-rustls feature ([@JEnoch](https://github.com/JEnoch) in [#88](https://github.com/influxdb-rs/influxdb-rust/pull/88)) Switch between multiple http backends as described in the [README.md](README.md#Choice-of-HTTP-backend) @@ -56,26 +56,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- Internal request connection pooling ([@Robert-Steiner](https://github.com/Robert-Steiner) in [#73](https://github.com/Empty2k12/influxdb-rust/pull/73)) +- Internal request connection pooling ([@Robert-Steiner](https://github.com/Robert-Steiner) in [#73](https://github.com/influxdb-rs/influxdb-rust/pull/73)) Previously visible `Client` fields are now private. If you were using them before, please reference them from the creation of the Client. -- Support async-std ([@JEnoch](https://github.com/JEnoch) in [#72](https://github.com/Empty2k12/influxdb-rust/pull/72)) +- Support async-std ([@JEnoch](https://github.com/JEnoch) in [#72](https://github.com/influxdb-rs/influxdb-rust/pull/72)) - 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 + 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 ## [0.2.0] - 2020-10-25 ### Added -- 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)) -- Added `Default` for `series` in InfluxDb Response ([@SafariMonkey](https://github.com/SafariMonkey) in [#67](https://github.com/Empty2k12/influxdb-rust/pull/67)) -- `WriteQuery` and `ReadQuery` now derive `Debug` and `Clone` ([@jaredwolff](https://github.com/jaredwolff) in [#63](https://github.com/Empty2k12/influxdb-rust/pull/63)) +- 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)) +- Added `Default` for `series` in InfluxDb Response ([@SafariMonkey](https://github.com/SafariMonkey) in [#67](https://github.com/influxdb-rs/influxdb-rust/pull/67)) +- `WriteQuery` and `ReadQuery` now derive `Debug` and `Clone` ([@jaredwolff](https://github.com/jaredwolff) in [#63](https://github.com/influxdb-rs/influxdb-rust/pull/63)) ### Changed -- Replaced `failure` crate with `thiserror` crate ([@msrd0](https://github.com/msrd0) in [#70](https://github.com/Empty2k12/influxdb-rust/pull/70)) -- 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)) +- Replaced `failure` crate with `thiserror` crate ([@msrd0](https://github.com/msrd0) in [#70](https://github.com/influxdb-rs/influxdb-rust/pull/70)) +- 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)) - 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: ``` @@ -93,8 +93,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed -- 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)) -- 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)) +- 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)) +- 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)) ## [0.1.0] - 2020-03-17 @@ -165,13 +165,13 @@ This release removes the prefix `InfluxDb` of most types in this library and ree - 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.4.0...HEAD -[0.4.0]: https://github.com/Empty2k12/influxdb-rust/compare/v0.3.0...v0.4.0 -[0.3.0]: https://github.com/Empty2k12/influxdb-rust/compare/v0.2.0...v0.3.0 -[0.2.0]: https://github.com/Empty2k12/influxdb-rust/compare/v0.1.0...v0.2.0 -[0.1.0]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.6...v0.1.0 -[0.0.5]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.5...v0.0.6 -[0.0.5]: https://github.com/Empty2k12/influxdb-rust/compare/v0.0.4...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 +[unreleased]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.4.0...HEAD +[0.4.0]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.3.0...v0.4.0 +[0.3.0]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.2.0...v0.3.0 +[0.2.0]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.1.0...v0.2.0 +[0.1.0]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.0.6...v0.1.0 +[0.0.5]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.0.5...v0.0.6 +[0.0.5]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.0.4...v0.0.5 +[0.0.4]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.0.3...v0.0.4 +[0.0.3]: https://github.com/influxdb-rs/influxdb-rust/compare/v0.0.2...v0.0.3 +[0.0.2]: https://github.com/influxdb-rs/influxdb-rust/releases/tag/v0.0.2 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f25d2bd..1f9008d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,7 @@ Thank you for contributing. It's much apprechiated! -The following is a set of guidelines for contributing to influxdb-rust, which is hosted at [Empty2k12/influxdb-rust](https://github.com/Empty2k12/influxdb-rust) on GitHub. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request. +The following is a set of guidelines for contributing to influxdb-rust, which is hosted at [influxdb-rs/influxdb-rust](https://github.com/influxdb-rs/influxdb-rust) on GitHub. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request. #### Table Of Contents @@ -49,7 +49,7 @@ Explain the problem and include additional details to help maintainers reproduce Provide more context by answering these questions: - **Did the problem start happening recently** (e.g. after updating to a new version of influxdb-rust) or was this always a problem? -- If the problem started happening recently, **can you reproduce the problem in an older version of influxdb-rust?** What's the most recent version in which the problem doesn't happen? You can download older versions of influxdb-rust from [the releases page](https://github.com/Empty2k12/influxdb-rust/releases). +- If the problem started happening recently, **can you reproduce the problem in an older version of influxdb-rust?** What's the most recent version in which the problem doesn't happen? You can download older versions of influxdb-rust from [the releases page](https://github.com/influxdb-rs/influxdb-rust/releases). - **Can you reliably reproduce the issue?** If not, provide details about how often the problem happens and under which conditions it normally happens. ### Suggesting Enhancements @@ -73,9 +73,9 @@ Enhancement suggestions are tracked as [GitHub issues](https://guides.github.com Unsure where to begin contributing to influxdb-rust? You can start by looking through these `good first issue` and `Type of Change: Minor` issues: -- [good first issue issues](https://github.com/Empty2k12/influxdb-rust/labels/good%20first%20issue) - issues which are suited for new developers. usually just some lines of code or just a test. -- [Type of Change: Minor issues](https://github.com/Empty2k12/influxdb-rust/labels/Type%20of%20Change%3A%20Minor) - issues which only change a small amount of code in the library. -- [Hacktoberfest issues](https://github.com/Empty2k12/influxdb-rust/labels/Hacktoberfest) - issues which are suited for someone taking part in Hacktoberfest. +- [good first issue issues](https://github.com/influxdb-rs/influxdb-rust/labels/good%20first%20issue) - issues which are suited for new developers. usually just some lines of code or just a test. +- [Type of Change: Minor issues](https://github.com/influxdb-rs/influxdb-rust/labels/Type%20of%20Change%3A%20Minor) - issues which only change a small amount of code in the library. +- [Hacktoberfest issues](https://github.com/influxdb-rs/influxdb-rust/labels/Hacktoberfest) - issues which are suited for someone taking part in Hacktoberfest. #### Local development @@ -128,37 +128,37 @@ Please open an issue if you have suggestions for new labels. | Issue label | List issues | Description | | ------------------------------ | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -| `Status: Merge when CI passes` | [search](https://github.com/empty2k12/influxdb-rust/labels/status%3a%20merge%20when%20ci%20passes) | Applied when the pull request has been reviewed and is ready for merge once the CI pipeline passes. | -| `Status: Awaiting Response` | [search](https://github.com/empty2k12/influxdb-rust/labels/status%3a%20awaiting%20response) | Applied to issues which have a response from the issue owner pending. | -| `Status: Pending Discussion` | [search](https://github.com/empty2k12/influxdb-rust/labels/status%3a%20pending%20discussion) | Applied to pull requests where a pull request review has been submitted and the pull request author has not responded to feedback yet. | -| `Status: Pending Updates` | [search](https://github.com/Empty2k12/influxdb-rust/labels/Status%3A%20Pending%20Updates) | Applied to pull requests where updates to the changeset is pending. | -| `Status: Work in Progress` | [search](https://github.com/Empty2k12/influxdb-rust/labels/Status%3A%20Work%20in%20Progress) | Applied to pull requests that are work in progress. | +| `Status: Merge when CI passes` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/status%3a%20merge%20when%20ci%20passes) | Applied when the pull request has been reviewed and is ready for merge once the CI pipeline passes. | +| `Status: Awaiting Response` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/status%3a%20awaiting%20response) | Applied to issues which have a response from the issue owner pending. | +| `Status: Pending Discussion` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/status%3a%20pending%20discussion) | Applied to pull requests where a pull request review has been submitted and the pull request author has not responded to feedback yet. | +| `Status: Pending Updates` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/Status%3A%20Pending%20Updates) | Applied to pull requests where updates to the changeset is pending. | +| `Status: Work in Progress` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/Status%3A%20Work%20in%20Progress) | Applied to pull requests that are work in progress. | #### Type of Change of Issue or Pull Request | Issue label | List issues | Description | | -------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | -| `Type: Bug` | [search](https://github.com/Empty2k12/influxdb-rust/labels/Status%3A%20Type%20Bug) | Applied to issues reporting bugs. | -| `Type: Chore` | [search](https://github.com/Empty2k12/influxdb-rust/labels/Status%3A%20Type%20Chore) | Applied to issues and pull requests regarding miscellaneous tasks around the reposity. | -| `Type: Enhancement` | [search](https://github.com/Empty2k12/influxdb-rust/labels/Status%3A%20Type%20Enhancement) | Applied to issues and pull requests where an existing feature is improved. | -| `Type: Governance` | [search](https://github.com/Empty2k12/influxdb-rust/labels/Status%3A%20Type%20Governance) | Applied to issues pull requests regarding repository governance. | -| `Type: New Feature` | [search](https://github.com/empty2k12/influxdb-rust/labels/status%3a%20Type%20New%20Feature) | Applied to issues and pull requests requesting or implementing new features. | | -| `Type: Optimization` | [search](https://github.com/empty2k12/influxdb-rust/labels/status%3a%20Type%20Optimization) | Applied to issues and pull requests regarding optimizing existing code. | | -| `Type: Security` | [search](https://github.com/empty2k12/influxdb-rust/labels/status%3a%20Type%20Security) | Applied to issues and pull requests regarding the security of the library. | | +| `Type: Bug` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/Status%3A%20Type%20Bug) | Applied to issues reporting bugs. | +| `Type: Chore` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/Status%3A%20Type%20Chore) | Applied to issues and pull requests regarding miscellaneous tasks around the reposity. | +| `Type: Enhancement` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/Status%3A%20Type%20Enhancement) | Applied to issues and pull requests where an existing feature is improved. | +| `Type: Governance` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/Status%3A%20Type%20Governance) | Applied to issues pull requests regarding repository governance. | +| `Type: New Feature` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/status%3a%20Type%20New%20Feature) | Applied to issues and pull requests requesting or implementing new features. | | +| `Type: Optimization` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/status%3a%20Type%20Optimization) | Applied to issues and pull requests regarding optimizing existing code. | | +| `Type: Security` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/status%3a%20Type%20Security) | Applied to issues and pull requests regarding the security of the library. | | #### Size of Change Labels | Issue label | List issues | Description | | ------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------- | -| `Type of Change: Master` | [search](https://github.com/Empty2k12/influxdb-rust/labels/Type%20of%20Change%3A%20Master) | Applied to issues and pull requests which are major changes. | -| `Type of Change: Medium` | [search](https://github.com/Empty2k12/influxdb-rust/labels/Type%20of%20Change%3A%20Medium) | Applied to issues and pull requests which are medium changes. | -| `Type of Change: Minor` | [search](https://github.com/Empty2k12/influxdb-rust/labels/Type%20of%20Change%3A%20Minor) | Applied to issues and pull requests which are small changes. | +| `Type of Change: Master` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/Type%20of%20Change%3A%20Master) | Applied to issues and pull requests which are major changes. | +| `Type of Change: Medium` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/Type%20of%20Change%3A%20Medium) | Applied to issues and pull requests which are medium changes. | +| `Type of Change: Minor` | [search](https://github.com/influxdb-rs/influxdb-rust/labels/Type%20of%20Change%3A%20Minor) | Applied to issues and pull requests which are small changes. | #### Misc Labels | Issue label | List issues | Description | | ---------------- | -------------------------------------------------------------------------------- | ----------------------------------------------------------------- | -| good first issue | [search](https://github.com/Empty2k12/influxdb-rust/labels/good%20first%20issue) | Indicates this issue is suited for new contributors | -| Hacktoberfest | [search](https://github.com/Empty2k12/influxdb-rust/labels/Hacktoberfest) | Issues which are suited for someone taking part in Hacktoberfest. | +| good first issue | [search](https://github.com/influxdb-rs/influxdb-rust/labels/good%20first%20issue) | Indicates this issue is suited for new contributors | +| Hacktoberfest | [search](https://github.com/influxdb-rs/influxdb-rust/labels/Hacktoberfest) | Issues which are suited for someone taking part in Hacktoberfest. | This document has been adopted from [Atom contributing guidelines](https://github.com/atom/atom/blob/master/CONTRIBUTING.md) diff --git a/README.md b/README.md index 908f17d..ea34b1c 100644 --- a/README.md +++ b/README.md @@ -13,13 +13,13 @@ - - Build Status + + Build Status - - Coverage Report - - + + Coverage Report + + Documentation Status @@ -33,7 +33,7 @@ This library is a work in progress. This means a feature you might need is not implemented yet or could be handled better. -Pull requests are always welcome. See [Contributing](https://github.com/Empty2k12/influxdb-rust/blob/master/CONTRIBUTING.md) and [Code of Conduct](https://github.com/Empty2k12/influxdb-rust/blob/master/CODE_OF_CONDUCT.md). For a list of past changes, see [CHANGELOG.md](https://github.com/Empty2k12/influxdb-rust/blob/master/CHANGELOG.md). +Pull requests are always welcome. See [Contributing](https://github.com/influxdb-rs/influxdb-rust/blob/main/CONTRIBUTING.md) and [Code of Conduct](https://github.com/influxdb-rs/influxdb-rust/blob/main/CODE_OF_CONDUCT.md). For a list of past changes, see [CHANGELOG.md](https://github.com/influxdb-rs/influxdb-rust/blob/main/CHANGELOG.md). ### Currently Supported Features @@ -44,7 +44,7 @@ Pull requests are always welcome. See [Contributing](https://github.com/Empty2k1 - `async`/`await` support - `#[derive(InfluxDbWriteable)]` Derive Macro for Writing / Reading into Structs - `GROUP BY` support -- Tokio and async-std support (see example below) or [available backends](https://github.com/Empty2k12/influxdb-rust/blob/master/influxdb/Cargo.toml) +- Tokio and async-std support (see example below) or [available backends](https://github.com/influxdb-rs/influxdb-rust/blob/main/influxdb/Cargo.toml) - Swappable HTTP backends ([see below](#Choice-of-HTTP-backend)) ## Quickstart @@ -138,4 +138,4 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) -@ 2020 Gero Gerke and [contributors](https://github.com/Empty2k12/influxdb-rust/graphs/contributors). +@ 2020 Gero Gerke and [contributors](https://github.com/influxdb-rs/influxdb-rust/graphs/contributors). diff --git a/README.tpl b/README.tpl index 4814b9c..27a12d7 100644 --- a/README.tpl +++ b/README.tpl @@ -13,13 +13,13 @@ - - Build Status + + Build Status - - Coverage Report - - + + Coverage Report + + Documentation Status @@ -32,4 +32,4 @@ {{readme}} -@ 2020 Gero Gerke and [contributors](https://github.com/Empty2k12/influxdb-rust/graphs/contributors). +@ 2020 Gero Gerke and [contributors](https://github.com/influxdb-rs/influxdb-rust/graphs/contributors). diff --git a/RELEASING.md b/RELEASING.md index 0d3176d..85e81a3 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -10,7 +10,7 @@ This project consists of two crates which need to be published to crates.io in t - [ ] `CHANGELOG.md`: Add new Section for the new version number with subsections `Added`, `Changed` and `Fixed`. - [ ] `CHANGELOG.md`: For each commit since the last release commit `Release vX.Y.Z`, added a changelog entry in the correct section linking to the author and PR in this format? ``` - ([@GithubUserName](https://github.com/GithubUserName) in [#PRNumber](https://github.com/Empty2k12/influxdb-rust/pull/PRNumber)) + ([@GithubUserName](https://github.com/GithubUserName) in [#PRNumber](https://github.com/influxdb-rs/influxdb-rust/pull/PRNumber)) ``` - [ ] `CHANGELOG.md`: At the bottom, changed the unreleased section link to `NEWVERSIONNUMBER...HEAD` and created a new link for the current release? - [ ] `influxdb/lib.rs`: Changed the version number mentioned in the doc-comment to the new version number? @@ -22,7 +22,7 @@ This project consists of two crates which need to be published to crates.io in t 1) `git add .` and `git commit -m "Release vX.Y.Z"` 2) `git tag vX.Y.Z` -3) `git push origin master` and `git push --tags` +3) `git push origin main` and `git push --tags` 4) `(cd influxdb-derive/ && cargo publish)` 5) `(cd influxdb/ && cargo publish)` 6) Create a Release in the Github Web UI diff --git a/influxdb/Cargo.toml b/influxdb/Cargo.toml index b493399..034db89 100644 --- a/influxdb/Cargo.toml +++ b/influxdb/Cargo.toml @@ -10,10 +10,7 @@ keywords = ["influxdb", "database", "influx"] license = "MIT" readme = "README.md" include = ["src/**/*", "tests/**/*", "Cargo.toml", "LICENSE"] -repository = "https://github.com/Empty2k12/influxdb-rust" - -[badges] -travis-ci = { repository = "Empty2k12/influxdb-rust", branch = "master" } +repository = "https://github.com/influxdb-rs/influxdb-rust" [dependencies] chrono = { version = "0.4.11", features = ["serde"] } diff --git a/influxdb/src/lib.rs b/influxdb/src/lib.rs index f03e9f8..e0842ed 100644 --- a/influxdb/src/lib.rs +++ b/influxdb/src/lib.rs @@ -1,7 +1,7 @@ //! This library is a work in progress. This means a feature you might need is not implemented //! yet or could be handled better. //! -//! Pull requests are always welcome. See [Contributing](https://github.com/Empty2k12/influxdb-rust/blob/master/CONTRIBUTING.md) and [Code of Conduct](https://github.com/Empty2k12/influxdb-rust/blob/master/CODE_OF_CONDUCT.md). For a list of past changes, see [CHANGELOG.md](https://github.com/Empty2k12/influxdb-rust/blob/master/CHANGELOG.md). +//! Pull requests are always welcome. See [Contributing](https://github.com/influxdb-rs/influxdb-rust/blob/main/CONTRIBUTING.md) and [Code of Conduct](https://github.com/influxdb-rs/influxdb-rust/blob/main/CODE_OF_CONDUCT.md). For a list of past changes, see [CHANGELOG.md](https://github.com/influxdb-rs/influxdb-rust/blob/main/CHANGELOG.md). //! //! ## Currently Supported Features //! @@ -12,7 +12,7 @@ //! - `async`/`await` support //! - `#[derive(InfluxDbWriteable)]` Derive Macro for Writing / Reading into Structs //! - `GROUP BY` support -//! - Tokio and async-std support (see example below) or [available backends](https://github.com/Empty2k12/influxdb-rust/blob/master/influxdb/Cargo.toml) +//! - Tokio and async-std support (see example below) or [available backends](https://github.com/influxdb-rs/influxdb-rust/blob/main/influxdb/Cargo.toml) //! - Swappable HTTP backends ([see below](#Choice-of-HTTP-backend)) //! //! # Quickstart diff --git a/influxdb_derive/Cargo.toml b/influxdb_derive/Cargo.toml index a2c1e06..e9ed786 100644 --- a/influxdb_derive/Cargo.toml +++ b/influxdb_derive/Cargo.toml @@ -10,15 +10,11 @@ keywords = ["influxdb", "database", "influx", "derive"] license = "MIT" readme = "README.md" include = ["src/**/*", "tests/**/*", "Cargo.toml", "LICENSE"] -repository = "https://github.com/Empty2k12/influxdb-rust" +repository = "https://github.com/influxdb-rs/influxdb-rust" [lib] proc-macro = true -[badges] -travis-ci = { repository = "Empty2k12/influxdb-rust", branch = "master" } -coveralls = { repository = "Empty2k12/influxdb-rust", branch = "master", service = "github" } - [dependencies] proc-macro2 = "1.0.9" quote = "1.0.3" diff --git a/influxdb_derive/README.md b/influxdb_derive/README.md index faf99c6..4d51211 100644 --- a/influxdb_derive/README.md +++ b/influxdb_derive/README.md @@ -10,19 +10,16 @@

- - + + - - Build Status + + Build Status - - Documentation Status + + Documentation Status Build with Rust - - Minimum Rust Version -