Skip to content

Commit

Permalink
chore(version): revert version
Browse files Browse the repository at this point in the history
  • Loading branch information
parfeon committed Nov 3, 2023
1 parent 17596b5 commit 6b43e93
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 17 deletions.
7 changes: 1 addition & 6 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
name: rust
version: 0.4.2
version: 0.4.0
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.2"
version = "0.4.0"
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.2"
pubnub = "0.4.0"

# all features
[dependencies]
pubnub = { version = "0.4.2", features = ["full"] }
pubnub = { version = "0.4.0", 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.2", features = ["blocking", "access"] }
pubnub = { version = "0.4.0", features = ["blocking", "access"] }

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

### Available features
Expand Down Expand Up @@ -175,7 +175,7 @@ you need, for example:

```toml
[dependencies]
pubnub = { version = "0.4.2", default-features = false, features = ["serde", "publish",
pubnub = { version = "0.4.0", 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.2"
//! pubnub = "0.4.0"
//!
//! # all features
//! [dependencies]
//! pubnub = { version = "0.4.2", features = ["full"] }
//! pubnub = { version = "0.4.0", features = ["full"] }
//! ```
//!
//! ### Example
Expand Down Expand Up @@ -135,11 +135,11 @@
//! ```toml
//! # only blocking and access + default features
//! [dependencies]
//! pubnub = { version = "0.4.2", features = ["blocking", "access"] }
//! pubnub = { version = "0.4.0", features = ["blocking", "access"] }
//!
//! # only parse_token + default features
//! [dependencies]
//! pubnub = { version = "0.4.2", features = ["parse_token"] }
//! pubnub = { version = "0.4.0", features = ["parse_token"] }
//! ```
//!
//! ### Available features
Expand Down Expand Up @@ -178,7 +178,7 @@
//!
//! ```toml
//! [dependencies]
//! pubnub = { version = "0.4.2", default-features = false, features = ["serde", "publish",
//! pubnub = { version = "0.4.0", default-features = false, features = ["serde", "publish",
//! "blocking"] }
//! ```
//!
Expand Down

0 comments on commit 6b43e93

Please sign in to comment.