Skip to content

Commit

Permalink
PubNub SDK 0.4.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
pubnub-release-bot committed Nov 3, 2023
1 parent 6b43e93 commit 04b0616
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 12 deletions.
7 changes: 6 additions & 1 deletion .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
name: rust
version: 0.4.0
version: 0.4.2
schema: 1
scm: github.com/pubnub/rust
files: []
changelog:
- date: 2023-11-03
version: 0.4.2
changes:
- type: improvement
text: "Update license information."
- date: 2023-10-16
version: 0.4.0
changes:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pubnub"
version = "0.4.0"
version = "0.4.2"
edition = "2021"
license-file = "LICENSE"
authors = ["PubNub <[email protected]>"]
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2"

# all features
[dependencies]
pubnub = { version = "0.4.0", features = ["full"] }
pubnub = { version = "0.4.2", features = ["full"] }
```

### Example
Expand Down Expand Up @@ -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.2", features = ["blocking", "access"] }

# only parse_token + default features
[dependencies]
pubnub = { version = "0.4.0", features = ["parse_token"] }
pubnub = { version = "0.4.2", features = ["parse_token"] }
```

### Available features
Expand Down Expand Up @@ -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.2", default-features = false, features = ["serde", "publish",
"blocking"] }
```

Expand Down
10 changes: 5 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
//! ```toml
//! # default features
//! [dependencies]
//! pubnub = "0.4.0"
//! pubnub = "0.4.2"
//!
//! # all features
//! [dependencies]
//! pubnub = { version = "0.4.0", features = ["full"] }
//! pubnub = { version = "0.4.2", features = ["full"] }
//! ```
//!
//! ### Example
Expand Down Expand Up @@ -135,11 +135,11 @@
//! ```toml
//! # only blocking and access + default features
//! [dependencies]
//! pubnub = { version = "0.4.0", features = ["blocking", "access"] }
//! pubnub = { version = "0.4.2", features = ["blocking", "access"] }
//!
//! # only parse_token + default features
//! [dependencies]
//! pubnub = { version = "0.4.0", features = ["parse_token"] }
//! pubnub = { version = "0.4.2", features = ["parse_token"] }
//! ```
//!
//! ### Available features
Expand Down Expand Up @@ -178,7 +178,7 @@
//!
//! ```toml
//! [dependencies]
//! pubnub = { version = "0.4.0", default-features = false, features = ["serde", "publish",
//! pubnub = { version = "0.4.2", default-features = false, features = ["serde", "publish",
//! "blocking"] }
//! ```
//!
Expand Down

0 comments on commit 04b0616

Please sign in to comment.