diff --git a/.pubnub.yml b/.pubnub.yml index 45721e9..9914039 100644 --- a/.pubnub.yml +++ b/.pubnub.yml @@ -1,8 +1,15 @@ name: php -version: 7.0.1 +version: 7.0.2 schema: 1 scm: github.com/pubnub/php changelog: + - date: 2024-10-22 + version: 7.0.2 + changes: + - type: bug + text: "Fixed wrong type annotation for grant token response value." + - type: improvement + text: "Updated compatibility list." - date: 2024-07-10 version: 7.0.1 changes: @@ -420,8 +427,8 @@ sdks: - x86-64 - distribution-type: library distribution-repository: GitHub release - package-name: php-7.0.1.zip - location: https://github.com/pubnub/php/releases/tag/7.0.1 + package-name: php-7.0.2.zip + location: https://github.com/pubnub/php/releases/tag/7.0.2 requires: - name: rmccue/requests min-version: 1.0.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ed35e5..dce0839 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 7.0.2 +October 22 2024 + +#### Fixed +- Fixed wrong type annotation for grant token response value. + +#### Modified +- Updated compatibility list. + ## 7.0.1 July 10 2024 diff --git a/README.md b/README.md index f22d405..eca142b 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.1" + "pubnub/pubnub": "7.0.2" } } ``` diff --git a/composer.json b/composer.json index 8fe0d1d..f73aa6c 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.1", + "version": "7.0.2", "authors": [ { "name": "PubNub", diff --git a/src/PubNub/PubNub.php b/src/PubNub/PubNub.php index 2cb9839..f0867bc 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.1"; + protected const SDK_VERSION = "7.0.2"; protected const SDK_NAME = "PubNub-PHP"; public static $MAX_SEQUENCE = 65535;