(query)`
-[unreleased]: https://github.com/Empty2k12/influxdb-rust/compare/v0.3.0...HEAD
+[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
diff --git a/README.md b/README.md
index 60915c1..96b4aa1 100644
--- a/README.md
+++ b/README.md
@@ -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).
+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).
### Currently Supported Features
@@ -52,7 +52,7 @@ Pull requests are always welcome. See [Contributing](https://github.com/Empty2k1
Add the following to your `Cargo.toml`
```toml
-influxdb = { version = "0.3.0", features = ["derive"] }
+influxdb = { version = "0.4.0", features = ["derive"] }
```
For an example with using Serde deserialization, please refer to [serde_integration](crate::integrations::serde_integration)
@@ -105,23 +105,23 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu
- **[hyper](https://github.com/hyperium/hyper)** (used by default)
```toml
- influxdb = { version = "0.3.0", features = ["derive"] }
+ influxdb = { version = "0.4.0", features = ["derive"] }
```
- **[curl](https://github.com/alexcrichton/curl-rust)**, using [libcurl](https://curl.se/libcurl/)
```toml
- influxdb = { version = "0.3.0", default-features = false, features = ["derive", "use-serde", "curl-client"] }
+ influxdb = { version = "0.4.0", default-features = false, features = ["derive", "use-serde", "curl-client"] }
```
- **[async-h1](https://github.com/http-rs/async-h1)** with native TLS (OpenSSL)
```toml
- influxdb = { version = "0.3.0", default-features = false, features = ["derive", "use-serde", "h1-client"] }
+ influxdb = { version = "0.4.0", default-features = false, features = ["derive", "use-serde", "h1-client"] }
```
- **[async-h1](https://github.com/http-rs/async-h1)** with [rustls](https://github.com/ctz/rustls)
```toml
- influxdb = { version = "0.3.0", default-features = false, features = ["derive", "use-serde", "h1-client-rustls"] }
+ influxdb = { version = "0.4.0", default-features = false, features = ["derive", "use-serde", "h1-client-rustls"] }
```
- WebAssembly's `window.fetch`, via `web-sys` and **[wasm-bindgen](https://github.com/rustwasm/wasm-bindgen)**
```toml
- influxdb = { version = "0.3.0", default-features = false, features = ["derive", "use-serde", "wasm-client"] }
+ influxdb = { version = "0.4.0", default-features = false, features = ["derive", "use-serde", "wasm-client"] }
```
## License
diff --git a/influxdb/Cargo.toml b/influxdb/Cargo.toml
index efc77d3..6ebbf5a 100644
--- a/influxdb/Cargo.toml
+++ b/influxdb/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "influxdb"
-version = "0.3.0"
+version = "0.4.0"
authors = ["Gero Gerke <11deutron11@gmail.com>"]
edition = "2018"
description = "InfluxDB Driver for Rust"
@@ -19,7 +19,7 @@ travis-ci = { repository = "Empty2k12/influxdb-rust", branch = "master" }
chrono = { version = "0.4.11", features = ["serde"] }
futures = "0.3.4"
lazy_static = "1.4.0"
-influxdb_derive = { version = "0.3.0", optional = true }
+influxdb_derive = { version = "0.4.0", optional = true }
regex = "1.3.5"
surf = { version = "2.2.0", default-features = false }
serde = { version = "1.0.104", features = ["derive"], optional = true }
diff --git a/influxdb/src/lib.rs b/influxdb/src/lib.rs
index 1c5b012..117f07f 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).
+//! 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).
//!
//! ## Currently Supported Features
//!
@@ -20,7 +20,7 @@
//! Add the following to your `Cargo.toml`
//!
//! ```toml
-//! influxdb = { version = "0.3.0", features = ["derive"] }
+//! influxdb = { version = "0.4.0", features = ["derive"] }
//! ```
//!
//! For an example with using Serde deserialization, please refer to [serde_integration](crate::integrations::serde_integration)
@@ -73,23 +73,23 @@
//!
//! - **[hyper](https://github.com/hyperium/hyper)** (used by default)
//! ```toml
-//! influxdb = { version = "0.3.0", features = ["derive"] }
+//! influxdb = { version = "0.4.0", features = ["derive"] }
//! ```
//! - **[curl](https://github.com/alexcrichton/curl-rust)**, using [libcurl](https://curl.se/libcurl/)
//! ```toml
-//! influxdb = { version = "0.3.0", default-features = false, features = ["derive", "use-serde", "curl-client"] }
+//! influxdb = { version = "0.4.0", default-features = false, features = ["derive", "use-serde", "curl-client"] }
//! ```
//! - **[async-h1](https://github.com/http-rs/async-h1)** with native TLS (OpenSSL)
//! ```toml
-//! influxdb = { version = "0.3.0", default-features = false, features = ["derive", "use-serde", "h1-client"] }
+//! influxdb = { version = "0.4.0", default-features = false, features = ["derive", "use-serde", "h1-client"] }
//! ```
//! - **[async-h1](https://github.com/http-rs/async-h1)** with [rustls](https://github.com/ctz/rustls)
//! ```toml
-//! influxdb = { version = "0.3.0", default-features = false, features = ["derive", "use-serde", "h1-client-rustls"] }
+//! influxdb = { version = "0.4.0", default-features = false, features = ["derive", "use-serde", "h1-client-rustls"] }
//! ```
//! - WebAssembly's `window.fetch`, via `web-sys` and **[wasm-bindgen](https://github.com/rustwasm/wasm-bindgen)**
//! ```toml
-//! influxdb = { version = "0.3.0", default-features = false, features = ["derive", "use-serde", "wasm-client"] }
+//! influxdb = { version = "0.4.0", default-features = false, features = ["derive", "use-serde", "wasm-client"] }
//! ```
//!
//! # License
diff --git a/influxdb_derive/Cargo.toml b/influxdb_derive/Cargo.toml
index 0fd812b..a2c1e06 100644
--- a/influxdb_derive/Cargo.toml
+++ b/influxdb_derive/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "influxdb_derive"
-version = "0.3.0"
+version = "0.4.0"
authors = ["Gero Gerke <11deutron11@gmail.com>"]
edition = "2018"
description = "InfluxDB Driver for Rust - Derive"
pFad - Phonifier reborn
Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.
Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.
Alternative Proxies:
Alternative Proxy
pFad Proxy
pFad v3 Proxy
pFad v4 Proxy