diff --git a/.pubnub.yml b/.pubnub.yml index 502b2912..a786b2a0 100644 --- a/.pubnub.yml +++ b/.pubnub.yml @@ -1,9 +1,14 @@ name: rust -version: 0.4.0 +version: 0.4.1 schema: 1 scm: github.com/pubnub/rust files: [] changelog: + - date: 2023-10-31 + version: 0.4.1 + changes: + - type: improvement + text: "Update license information." - date: 2023-10-16 version: 0.4.0 changes: diff --git a/Cargo.toml b/Cargo.toml index f734d722..6d26bac1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pubnub" -version = "0.4.0" +version = "0.4.1" edition = "2021" license = "PubNub Software Development Kit License" license-file = "LICENSE" diff --git a/README.md b/README.md index ea8e056b..04e96d2b 100644 --- a/README.md +++ b/README.md @@ -36,11 +36,11 @@ Add `pubnub` to your Rust project in the `Cargo.toml` file: ```toml # default features [dependencies] -pubnub = "0.4.0" +pubnub = "0.4.1" # all features [dependencies] -pubnub = { version = "0.4.0", features = ["full"] } +pubnub = { version = "0.4.1", features = ["full"] } ``` ### Example @@ -132,11 +132,11 @@ disable them in the `Cargo.toml` file, like so: ```toml # only blocking and access + default features [dependencies] -pubnub = { version = "0.4.0", features = ["blocking", "access"] } +pubnub = { version = "0.4.1", features = ["blocking", "access"] } # only parse_token + default features [dependencies] -pubnub = { version = "0.4.0", features = ["parse_token"] } +pubnub = { version = "0.4.1", features = ["parse_token"] } ``` ### Available features @@ -175,7 +175,7 @@ you need, for example: ```toml [dependencies] -pubnub = { version = "0.4.0", default-features = false, features = ["serde", "publish", +pubnub = { version = "0.4.1", default-features = false, features = ["serde", "publish", "blocking"] } ``` diff --git a/src/lib.rs b/src/lib.rs index 8fc95901..97a88273 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -39,11 +39,11 @@ //! ```toml //! # default features //! [dependencies] -//! pubnub = "0.4.0" +//! pubnub = "0.4.1" //! //! # all features //! [dependencies] -//! pubnub = { version = "0.4.0", features = ["full"] } +//! pubnub = { version = "0.4.1", features = ["full"] } //! ``` //! //! ### Example @@ -135,11 +135,11 @@ //! ```toml //! # only blocking and access + default features //! [dependencies] -//! pubnub = { version = "0.4.0", features = ["blocking", "access"] } +//! pubnub = { version = "0.4.1", features = ["blocking", "access"] } //! //! # only parse_token + default features //! [dependencies] -//! pubnub = { version = "0.4.0", features = ["parse_token"] } +//! pubnub = { version = "0.4.1", features = ["parse_token"] } //! ``` //! //! ### Available features @@ -178,7 +178,7 @@ //! //! ```toml //! [dependencies] -//! pubnub = { version = "0.4.0", default-features = false, features = ["serde", "publish", +//! pubnub = { version = "0.4.1", default-features = false, features = ["serde", "publish", //! "blocking"] } //! ``` //!