Skip to content

Commit 62cdca9

Browse files
PubNub SDK 0.7.0 release.
1 parent 8b79e11 commit 62cdca9

File tree

4 files changed

+27
-12
lines changed

4 files changed

+27
-12
lines changed

.pubnub.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
11
name: rust
2-
version: 0.6.0
2+
version: 0.7.0
33
schema: 1
44
scm: github.com/pubnub/rust
55
files: []
66
changelog:
7+
- date: 2025-10-28
8+
version: 0.7.0
9+
changes:
10+
- type: feature
11+
text: "Add `limit` (default `1000`) and `offset` parameters for `here_now` to fetch presence in portions."
12+
- type: feature
13+
text: "Use default retry configuration for `subscribe` and `presence` REST API calls."
14+
- type: bug
15+
text: "Fix the issue because of which it was possible to add the same channel / group multiple times to the `subscribe`, `heartbeat`, or `leave` requests."
16+
- type: bug
17+
text: "Fix the `Presence` enum variant to not intercept user-published messages that partly match the `Presence` variant."
18+
- type: improvement
19+
text: "Synchronize subscription flow with other SDKs."
20+
- type: improvement
21+
text: "Synchronize presence flow with other SDKs."
722
- date: 2024-02-07
823
version: 0.6.0
924
changes:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pubnub"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
edition = "2021"
55
license-file = "LICENSE"
66
authors = ["PubNub <[email protected]>"]

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ Add `pubnub` to your Rust project in the `Cargo.toml` file:
3636
```toml
3737
# default features
3838
[dependencies]
39-
pubnub = "0.6.0"
39+
pubnub = "0.7.0"
4040

4141
# all features
4242
[dependencies]
43-
pubnub = { version = "0.6.0", features = ["full"] }
43+
pubnub = { version = "0.7.0", features = ["full"] }
4444
```
4545

4646
### Example
@@ -164,11 +164,11 @@ disable them in the `Cargo.toml` file, like so:
164164
```toml
165165
# only blocking and access + default features
166166
[dependencies]
167-
pubnub = { version = "0.6.0", features = ["blocking", "access"] }
167+
pubnub = { version = "0.7.0", features = ["blocking", "access"] }
168168

169169
# only parse_token + default features
170170
[dependencies]
171-
pubnub = { version = "0.6.0", features = ["parse_token"] }
171+
pubnub = { version = "0.7.0", features = ["parse_token"] }
172172
```
173173

174174
### Available features
@@ -207,7 +207,7 @@ you need, for example:
207207

208208
```toml
209209
[dependencies]
210-
pubnub = { version = "0.6.0", default-features = false, features = ["serde", "publish",
210+
pubnub = { version = "0.7.0", default-features = false, features = ["serde", "publish",
211211
"blocking"] }
212212
```
213213

src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@
3939
//! ```toml
4040
//! # default features
4141
//! [dependencies]
42-
//! pubnub = "0.6.0"
42+
//! pubnub = "0.7.0"
4343
//!
4444
//! # all features
4545
//! [dependencies]
46-
//! pubnub = { version = "0.6.0", features = ["full"] }
46+
//! pubnub = { version = "0.7.0", features = ["full"] }
4747
//! ```
4848
//!
4949
//! ### Example
@@ -167,11 +167,11 @@
167167
//! ```toml
168168
//! # only blocking and access + default features
169169
//! [dependencies]
170-
//! pubnub = { version = "0.6.0", features = ["blocking", "access"] }
170+
//! pubnub = { version = "0.7.0", features = ["blocking", "access"] }
171171
//!
172172
//! # only parse_token + default features
173173
//! [dependencies]
174-
//! pubnub = { version = "0.6.0", features = ["parse_token"] }
174+
//! pubnub = { version = "0.7.0", features = ["parse_token"] }
175175
//! ```
176176
//!
177177
//! ### Available features
@@ -210,7 +210,7 @@
210210
//!
211211
//! ```toml
212212
//! [dependencies]
213-
//! pubnub = { version = "0.6.0", default-features = false, features = ["serde", "publish",
213+
//! pubnub = { version = "0.7.0", default-features = false, features = ["serde", "publish",
214214
//! "blocking"] }
215215
//! ```
216216
//!

0 commit comments

Comments
 (0)