Release bumps (#98)
Signed-off-by: Francesco Guardiani <francescoguard@gmail.com>
This commit is contained in:
parent
b5d95741c2
commit
d69ab904d1
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "cloudevents-sdk"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
authors = ["Francesco Guardiani <francescoguard@gmail.com>"]
|
||||
license-file = "LICENSE"
|
||||
edition = "2018"
|
||||
|
|
|
@ -31,7 +31,7 @@ To get started, add the dependency to `Cargo.toml`:
|
|||
|
||||
```toml
|
||||
[dependencies]
|
||||
cloudevents-sdk = "0.2.0"
|
||||
cloudevents-sdk = "0.3.0"
|
||||
```
|
||||
|
||||
Now you can start creating events:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "cloudevents-sdk-actix-web"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
authors = ["Francesco Guardiani <francescoguard@gmail.com>"]
|
||||
license-file = "../LICENSE"
|
||||
edition = "2018"
|
||||
|
@ -13,7 +13,7 @@ categories = ["web-programming", "encoding", "web-programming::http-server"]
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
cloudevents-sdk = { version = "0.2.0", path = ".." }
|
||||
cloudevents-sdk = { version = "0.3.0", path = ".." }
|
||||
actix-web = { version = "^3", default-features = false }
|
||||
actix-rt = "^1"
|
||||
async-trait = "^0.1.33"
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
//!
|
||||
//! Check out the [cloudevents-sdk](https://docs.rs/cloudevents-sdk) docs for more details on how to use [`cloudevents::Event`]
|
||||
|
||||
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-actix-web/0.2.0")]
|
||||
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-actix-web/0.3.0")]
|
||||
#![deny(broken_intra_doc_links)]
|
||||
|
||||
#[macro_use]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "cloudevents-sdk-rdkafka"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
authors = ["Pranav Bhatt <adpranavb2000@gmail.com>"]
|
||||
edition = "2018"
|
||||
license-file = "../LICENSE"
|
||||
|
@ -14,7 +14,7 @@ categories = ["web-programming", "encoding"]
|
|||
|
||||
[dependencies]
|
||||
bytes = "^0.5"
|
||||
cloudevents-sdk = { version = "0.2.0", path = ".." }
|
||||
cloudevents-sdk = { version = "0.3.0", path = ".." }
|
||||
lazy_static = "1.4.0"
|
||||
rdkafka = { version = "^0.24", features = ["cmake-build"] }
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
//! # }
|
||||
//! ```
|
||||
|
||||
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-rdkafka/0.2.0")]
|
||||
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-rdkafka/0.3.0")]
|
||||
#![deny(broken_intra_doc_links)]
|
||||
|
||||
#[macro_use]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "cloudevents-sdk-reqwest"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
authors = ["Francesco Guardiani <francescoguard@gmail.com>"]
|
||||
license-file = "../LICENSE"
|
||||
edition = "2018"
|
||||
|
@ -14,7 +14,7 @@ categories = ["web-programming", "encoding", "web-programming::http-client"]
|
|||
|
||||
[dependencies]
|
||||
async-trait = "^0.1.33"
|
||||
cloudevents-sdk = { version = "0.2.0", path = ".." }
|
||||
cloudevents-sdk = { version = "0.3.0", path = ".." }
|
||||
lazy_static = "1.4.0"
|
||||
bytes = "^0.5"
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
//!
|
||||
//! Check out the [cloudevents-sdk](https://docs.rs/cloudevents-sdk) docs for more details on how to use [`cloudevents::Event`].
|
||||
|
||||
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-reqwest/0.2.0")]
|
||||
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-reqwest/0.3.0")]
|
||||
#![deny(broken_intra_doc_links)]
|
||||
|
||||
#[macro_use]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "actix-web-example"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
authors = ["Francesco Guardiani <francescoguard@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "rdkafka-example"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
authors = ["Pranav Bhatt <adpranavb2000@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "reqwest-wasm-example"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
authors = ["Francesco Guardiani <francescoguard@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
//! * [cloudevents-sdk-rdkafka](https://docs.rs/cloudevents-sdk-rdkafka): Integration with [rdkafka](https://fede1024.github.io/rust-rdkafka)
|
||||
//!
|
||||
|
||||
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk/0.2.0")]
|
||||
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk/0.3.0")]
|
||||
#![deny(broken_intra_doc_links)]
|
||||
|
||||
pub mod event;
|
||||
|
|
Loading…
Reference in New Issue