You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Samples updated to changes in pubnub_cancel() and other interface
changes and to use time() instead of clock() as clock() can measure
CPU-only time instead of real time.
Update Qt functional tests and make them reliable.
UUID is now part of the Pubnub context (instead of a pointer to
it). This makes handling its lifetime easier, yet doesn't incur much
memory increase.
C++ wrapper and Qt did not have proper multithreading support as they
didn't protect _their_ data. C protects its own context, but, that
doesn't include stuff in the C++ context (such as `auth` key and
the message to publish via POST).
Copy file name to clipboardExpand all lines: .pubnub.yml
+13-1
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,19 @@
1
1
name: c-core
2
-
version: 2.6.2
2
+
version: 2.6.3
3
3
scm: github.com/pubnub/c-core
4
4
changelog:
5
+
- version: v2.6.3
6
+
changes:
7
+
- type: enhancement
8
+
text: Update samples to changes in pubnub_cancel() and other interface changes
9
+
- type: enhancement
10
+
text: Update samples to use time() instead of clock() as clock() can measure CPU-only time instead of real time
11
+
- type: enhancement
12
+
text: Update Qt functional tests and make them reliable
13
+
- type: enhancement
14
+
text: UUID is now part of the Pubnub context (instead of a pointer to it). This makes handling its lifetime easier, yet doesn't incur much memory increase
15
+
- type: bug
16
+
text: C++ wrapper and Qt did not have proper multithreading support as they didn't protect _their_ data. Now that's fixed.
0 commit comments