Skip to content

Commit d69ab90

Browse files
authoredNov 2, 2020
Release bumps (#98)
Signed-off-by: Francesco Guardiani <[email protected]>
1 parent b5d9574 commit d69ab90

File tree

12 files changed

+15
-15
lines changed

12 files changed

+15
-15
lines changed
 

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cloudevents-sdk"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Francesco Guardiani <francescoguard@gmail.com>"]
55
license-file = "LICENSE"
66
edition = "2018"

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To get started, add the dependency to `Cargo.toml`:
3131

3232
```toml
3333
[dependencies]
34-
cloudevents-sdk = "0.2.0"
34+
cloudevents-sdk = "0.3.0"
3535
```
3636

3737
Now you can start creating events:

‎cloudevents-sdk-actix-web/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cloudevents-sdk-actix-web"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Francesco Guardiani <francescoguard@gmail.com>"]
55
license-file = "../LICENSE"
66
edition = "2018"
@@ -13,7 +13,7 @@ categories = ["web-programming", "encoding", "web-programming::http-server"]
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
cloudevents-sdk = { version = "0.2.0", path = ".." }
16+
cloudevents-sdk = { version = "0.3.0", path = ".." }
1717
actix-web = { version = "^3", default-features = false }
1818
actix-rt = "^1"
1919
async-trait = "^0.1.33"

‎cloudevents-sdk-actix-web/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
//!
4242
//! Check out the [cloudevents-sdk](https://docs.rs/cloudevents-sdk) docs for more details on how to use [`cloudevents::Event`]
4343
44-
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-actix-web/0.2.0")]
44+
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-actix-web/0.3.0")]
4545
#![deny(broken_intra_doc_links)]
4646

4747
#[macro_use]

‎cloudevents-sdk-rdkafka/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cloudevents-sdk-rdkafka"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Pranav Bhatt <adpranavb2000@gmail.com>"]
55
edition = "2018"
66
license-file = "../LICENSE"
@@ -14,7 +14,7 @@ categories = ["web-programming", "encoding"]
1414

1515
[dependencies]
1616
bytes = "^0.5"
17-
cloudevents-sdk = { version = "0.2.0", path = ".." }
17+
cloudevents-sdk = { version = "0.3.0", path = ".." }
1818
lazy_static = "1.4.0"
1919
rdkafka = { version = "^0.24", features = ["cmake-build"] }
2020

‎cloudevents-sdk-rdkafka/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
//! # }
4949
//! ```
5050
51-
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-rdkafka/0.2.0")]
51+
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-rdkafka/0.3.0")]
5252
#![deny(broken_intra_doc_links)]
5353

5454
#[macro_use]

‎cloudevents-sdk-reqwest/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cloudevents-sdk-reqwest"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Francesco Guardiani <francescoguard@gmail.com>"]
55
license-file = "../LICENSE"
66
edition = "2018"
@@ -14,7 +14,7 @@ categories = ["web-programming", "encoding", "web-programming::http-client"]
1414

1515
[dependencies]
1616
async-trait = "^0.1.33"
17-
cloudevents-sdk = { version = "0.2.0", path = ".." }
17+
cloudevents-sdk = { version = "0.3.0", path = ".." }
1818
lazy_static = "1.4.0"
1919
bytes = "^0.5"
2020

‎cloudevents-sdk-reqwest/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
//!
3030
//! Check out the [cloudevents-sdk](https://docs.rs/cloudevents-sdk) docs for more details on how to use [`cloudevents::Event`].
3131
32-
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-reqwest/0.2.0")]
32+
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk-reqwest/0.3.0")]
3333
#![deny(broken_intra_doc_links)]
3434

3535
#[macro_use]

‎example-projects/actix-web-example/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "actix-web-example"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Francesco Guardiani <francescoguard@gmail.com>"]
55
edition = "2018"
66

‎example-projects/rdkafka-example/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rdkafka-example"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Pranav Bhatt <adpranavb2000@gmail.com>"]
55
edition = "2018"
66

‎example-projects/reqwest-wasm-example/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "reqwest-wasm-example"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Francesco Guardiani <francescoguard@gmail.com>"]
55
edition = "2018"
66

‎src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
//! * [cloudevents-sdk-rdkafka](https://docs.rs/cloudevents-sdk-rdkafka): Integration with [rdkafka](https://fede1024.github.io/rust-rdkafka)
3838
//!
3939
40-
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk/0.2.0")]
40+
#![doc(html_root_url = "https://docs.rs/cloudevents-sdk/0.3.0")]
4141
#![deny(broken_intra_doc_links)]
4242

4343
pub mod event;

0 commit comments

Comments
 (0)
Please sign in to comment.