Skip to content

Commit f687cd1

Browse files
PubNub SDK v6.0.2 release.
1 parent de7d055 commit f687cd1

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

.pubnub.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
---
22
changelog:
3+
- date: 2025-10-20
4+
version: v6.0.2
5+
changes:
6+
- type: bug
7+
text: "Fixes issue of delete message with `from` and `to` parameters. To delete range of message(s)."
38
- date: 2025-08-19
49
version: v6.0.1
510
changes:
@@ -501,7 +506,7 @@ supported-platforms:
501506
platforms:
502507
- "Dart SDK >=2.6.0 <3.0.0"
503508
version: "PubNub Dart SDK"
504-
version: "6.0.1"
509+
version: "6.0.2"
505510
sdks:
506511
-
507512
full-name: PubNub Dart SDK

pubnub/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v6.0.2
2+
October 20 2025
3+
4+
#### Fixed
5+
- Fixes issue of delete message with `from` and `to` parameters. To delete range of message(s).
6+
17
## v6.0.1
28
August 19 2025
39

pubnub/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To add the package to your Dart or Flutter project, add `pubnub` as a dependency
1414

1515
```yaml
1616
dependencies:
17-
pubnub: ^6.0.1
17+
pubnub: ^6.0.2
1818
```
1919
2020
After adding the dependency to `pubspec.yaml`, run the `dart pub get` command in the root directory of your project (the same that the `pubspec.yaml` is in).

pubnub/lib/src/core/core.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Core {
2121
/// Internal module responsible for supervising.
2222
SupervisorModule supervisor = SupervisorModule();
2323

24-
static String version = '6.0.1';
24+
static String version = '6.0.2';
2525

2626
static String instanceId =
2727
'${(DateTime.now().millisecondsSinceEpoch % 100000)}'.padLeft(5);

pubnub/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: pubnub
22
description: PubNub SDK v6 for Dart lang (with Flutter support) that allows you to create real-time applications
3-
version: 6.0.1
3+
version: 6.0.2
44
homepage: https://www.pubnub.com/docs/sdks/dart
55

66
environment:

0 commit comments

Comments
 (0)