diff --git a/Cargo.toml b/Cargo.toml index d36820f2..9bcd1348 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudevents-sdk" -version = "0.1.0" +version = "0.2.0" authors = ["Francesco Guardiani "] license-file = "LICENSE" edition = "2018" diff --git a/README.md b/README.md index 8aec5fb6..52b74113 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Note: This project is WIP under active development, hence all APIs are considere To get started, add the dependency to `Cargo.toml`: ```toml -cloudevents-sdk = "0.1.0" +cloudevents-sdk = "0.2.0" ``` Now you can start creating events: diff --git a/cloudevents-sdk-actix-web/Cargo.toml b/cloudevents-sdk-actix-web/Cargo.toml index 47697946..423c9dd5 100644 --- a/cloudevents-sdk-actix-web/Cargo.toml +++ b/cloudevents-sdk-actix-web/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudevents-sdk-actix-web" -version = "0.1.0" +version = "0.2.0" authors = ["Francesco Guardiani "] license-file = "../LICENSE" edition = "2018" @@ -12,7 +12,7 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -cloudevents-sdk = { version = "0.1.0", path = ".." } +cloudevents-sdk = { version = "0.2.0", path = ".." } actix-web = "2" actix-rt = "1" async-trait = "^0.1.33" diff --git a/cloudevents-sdk-rdkafka/Cargo.toml b/cloudevents-sdk-rdkafka/Cargo.toml index 0678c712..861315d3 100644 --- a/cloudevents-sdk-rdkafka/Cargo.toml +++ b/cloudevents-sdk-rdkafka/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudevents-sdk-rdkafka" -version = "0.1.0" +version = "0.2.0" authors = ["Pranav Bhatt "] edition = "2018" license-file = "../LICENSE" @@ -13,7 +13,7 @@ readme = "README.md" [dependencies] bytes = "^0.5" -cloudevents-sdk = { version = "0.1.0", path = ".." } +cloudevents-sdk = { version = "0.2.0", path = ".." } lazy_static = "1.4.0" rdkafka = "^0.23" diff --git a/cloudevents-sdk-reqwest/Cargo.toml b/cloudevents-sdk-reqwest/Cargo.toml index 8f836b45..50a0fa3b 100644 --- a/cloudevents-sdk-reqwest/Cargo.toml +++ b/cloudevents-sdk-reqwest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudevents-sdk-reqwest" -version = "0.1.0" +version = "0.2.0" authors = ["Francesco Guardiani "] license-file = "../LICENSE" edition = "2018" @@ -13,7 +13,7 @@ readme = "README.md" [dependencies] async-trait = "^0.1.33" -cloudevents-sdk = { version = "0.1.0", path = ".." } +cloudevents-sdk = { version = "0.2.0", path = ".." } lazy_static = "1.4.0" bytes = "^0.5" diff --git a/example-projects/actix-web-example/Cargo.toml b/example-projects/actix-web-example/Cargo.toml index fa09f258..41002a42 100644 --- a/example-projects/actix-web-example/Cargo.toml +++ b/example-projects/actix-web-example/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-web-example" -version = "0.1.0" +version = "0.2.0" authors = ["Francesco Guardiani "] edition = "2018" diff --git a/example-projects/rdkafka-example/Cargo.toml b/example-projects/rdkafka-example/Cargo.toml index b60c0183..6972df77 100644 --- a/example-projects/rdkafka-example/Cargo.toml +++ b/example-projects/rdkafka-example/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rdkafka-example" -version = "0.1.0" +version = "0.2.0" authors = ["Pranav Bhatt "] edition = "2018" diff --git a/example-projects/reqwest-wasm-example/Cargo.toml b/example-projects/reqwest-wasm-example/Cargo.toml index 425e4dce..f912a24e 100644 --- a/example-projects/reqwest-wasm-example/Cargo.toml +++ b/example-projects/reqwest-wasm-example/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest-wasm-example" -version = "0.1.0" +version = "0.2.0" authors = ["Francesco Guardiani "] edition = "2018"