Skip to content

Commit

Permalink
Release bumps (#98)
Browse files Browse the repository at this point in the history
Signed-off-by: Francesco Guardiani <francescoguard@gmail.com>
  • Loading branch information
slinkydeveloper authored Nov 2, 2020
1 parent b5d9574 commit d69ab90
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions cloudevents-sdk-actix-web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion cloudevents-sdk-actix-web/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions cloudevents-sdk-rdkafka/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"] }

Expand Down
2 changes: 1 addition & 1 deletion cloudevents-sdk-rdkafka/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions cloudevents-sdk-reqwest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion cloudevents-sdk-reqwest/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion example-projects/actix-web-example/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
2 changes: 1 addition & 1 deletion example-projects/rdkafka-example/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rdkafka-example"
version = "0.2.0"
version = "0.3.0"
authors = ["Pranav Bhatt <adpranavb2000@gmail.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion example-projects/reqwest-wasm-example/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d69ab90

Please sign in to comment.