Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
---
version: v8.2.0
version: v9.0.0
changelog:
- date: 2025-05-08
version: v9.0.0
changes:
- type: feature
text: "Imported and adapted a C# change with handling and reporting different transport layer http request failure causes."
- type: feature
text: "BREAKING CHANGES - Changed Pubnub C# DLL target to .NET Standard 2.0 which is recommended by Unity, oldest supported Unity version is now 2018.2."
- date: 2025-03-12
version: v8.2.0
changes:
Expand Down Expand Up @@ -765,7 +772,7 @@ sdks:
distribution-type: package
distribution-repository: git release
package-name: PubNub.unitypackage
location: https://github.com/pubnub/unity/releases/download/v8.2.0/PubNub.unitypackage
location: https://github.com/pubnub/unity/releases/download/v9.0.0/PubNub.unitypackage
requires:
-
name: "UnityEditor"
Expand Down Expand Up @@ -897,7 +904,7 @@ sdks:
distribution-type: package
distribution-repository: git release
package-name: PubNub.unitypackage
location: https://github.com/pubnub/unity/releases/download/v8.2.0/PubNub.unitypackage
location: https://github.com/pubnub/unity/releases/download/v9.0.0/PubNub.unitypackage
requires:
-
name: "UnityEditor"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace PubnubApi.Unity
{
public class UnityPNSDKSource : IPNSDKSource {

private const string build = "8.2.0";
private const string build = "9.0.0";

public string GetPNSDK() {
#if(UNITY_IOS)
Expand Down
2 changes: 1 addition & 1 deletion PubNubUnity/Assets/PubNub/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.pubnub.sdk",
"version": "8.2.0",
"version": "9.0.0",
"displayName": "PubNub SDK",
"description": "PubNub Real-time Cloud-Hosted Push API and Push Notification Client Frameworks",
"unity": "2018.2",
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.2.0
9.0.0
Loading