From 63aa9b3974ae3126e4fad8d55368334a6491caa9 Mon Sep 17 00:00:00 2001 From: PubNub Release Bot <120067856+pubnub-release-bot@users.noreply.github.com> Date: Wed, 20 Nov 2024 08:16:29 +0000 Subject: [PATCH] PubNub SDK 7.1.0 release. --- .pubnub.yml | 11 ++++++++--- CHANGELOG.md | 6 ++++++ README.md | 2 +- composer.json | 2 +- src/PubNub/PubNub.php | 2 +- 5 files changed, 17 insertions(+), 6 deletions(-) diff --git a/.pubnub.yml b/.pubnub.yml index 9914039..05504d8 100644 --- a/.pubnub.yml +++ b/.pubnub.yml @@ -1,8 +1,13 @@ name: php -version: 7.0.2 +version: 7.1.0 schema: 1 scm: github.com/pubnub/php changelog: + - date: 2024-11-20 + version: 7.1.0 + changes: + - type: feature + text: "Add custom message type support for the following APIs - publish, signal, share file, subscribe and history." - date: 2024-10-22 version: 7.0.2 changes: @@ -427,8 +432,8 @@ sdks: - x86-64 - distribution-type: library distribution-repository: GitHub release - package-name: php-7.0.2.zip - location: https://github.com/pubnub/php/releases/tag/7.0.2 + package-name: php-7.1.0.zip + location: https://github.com/pubnub/php/releases/tag/7.1.0 requires: - name: rmccue/requests min-version: 1.0.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index dce0839..bf1d215 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 7.1.0 +November 20 2024 + +#### Added +- Add custom message type support for the following APIs - publish, signal, share file, subscribe and history. + ## 7.0.2 October 22 2024 diff --git a/README.md b/README.md index eca142b..c34eb8b 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ You will need the publish and subscribe keys to authenticate your app. Get your { "require": { - "pubnub/pubnub": "7.0.2" + "pubnub/pubnub": "7.1.0" } } ``` diff --git a/composer.json b/composer.json index 7548ef4..2e0f110 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "keywords": ["api", "real-time", "realtime", "real time", "ajax", "push"], "homepage": "http://www.pubnub.com/", "license": "proprietary", - "version": "7.0.2", + "version": "7.1.0", "authors": [ { "name": "PubNub", diff --git a/src/PubNub/PubNub.php b/src/PubNub/PubNub.php index f0867bc..00b5754 100644 --- a/src/PubNub/PubNub.php +++ b/src/PubNub/PubNub.php @@ -57,7 +57,7 @@ class PubNub implements LoggerAwareInterface { - protected const SDK_VERSION = "7.0.2"; + protected const SDK_VERSION = "7.1.0"; protected const SDK_NAME = "PubNub-PHP"; public static $MAX_SEQUENCE = 65535;