Skip to content

Commit 35b37e5

Browse files
Version bump (#74)
Signed-off-by: Francesco Guardiani <[email protected]>
1 parent 4a70d50 commit 35b37e5

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cloudevents-sdk"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Francesco Guardiani <[email protected]>"]
55
license-file = "LICENSE"
66
edition = "2018"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Note: This project is WIP under active development, hence all APIs are considere
3030
To get started, add the dependency to `Cargo.toml`:
3131

3232
```toml
33-
cloudevents-sdk = "0.1.0"
33+
cloudevents-sdk = "0.2.0"
3434
```
3535

3636
Now you can start creating events:

cloudevents-sdk-actix-web/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cloudevents-sdk-actix-web"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Francesco Guardiani <[email protected]>"]
55
license-file = "../LICENSE"
66
edition = "2018"
@@ -12,7 +12,7 @@ readme = "README.md"
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
cloudevents-sdk = { version = "0.1.0", path = ".." }
15+
cloudevents-sdk = { version = "0.2.0", path = ".." }
1616
actix-web = "2"
1717
actix-rt = "1"
1818
async-trait = "^0.1.33"

cloudevents-sdk-rdkafka/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cloudevents-sdk-rdkafka"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Pranav Bhatt <[email protected]>"]
55
edition = "2018"
66
license-file = "../LICENSE"
@@ -13,7 +13,7 @@ readme = "README.md"
1313

1414
[dependencies]
1515
bytes = "^0.5"
16-
cloudevents-sdk = { version = "0.1.0", path = ".." }
16+
cloudevents-sdk = { version = "0.2.0", path = ".." }
1717
lazy_static = "1.4.0"
1818
rdkafka = "^0.23"
1919

cloudevents-sdk-reqwest/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cloudevents-sdk-reqwest"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Francesco Guardiani <[email protected]>"]
55
license-file = "../LICENSE"
66
edition = "2018"
@@ -13,7 +13,7 @@ readme = "README.md"
1313

1414
[dependencies]
1515
async-trait = "^0.1.33"
16-
cloudevents-sdk = { version = "0.1.0", path = ".." }
16+
cloudevents-sdk = { version = "0.2.0", path = ".." }
1717
lazy_static = "1.4.0"
1818
bytes = "^0.5"
1919

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "actix-web-example"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Francesco Guardiani <[email protected]>"]
55
edition = "2018"
66

example-projects/rdkafka-example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rdkafka-example"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Pranav Bhatt <[email protected]>"]
55
edition = "2018"
66

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "reqwest-wasm-example"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Francesco Guardiani <[email protected]>"]
55
edition = "2018"
66

0 commit comments

Comments
 (0)