Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated license #90

Merged
merged 4 commits into from
Oct 30, 2023
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
11 changes: 8 additions & 3 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
name: php
version: 6.1.0
version: 6.1.1
schema: 1
scm: github.com/pubnub/php
changelog:
- date: 2023-10-30
version: v6.1.1
changes:
- type: bug
text: "Changed license type from MIT to PubNub Software Development Kit License."
- date: 2023-10-16
version: v6.1.0
changes:
Expand Down Expand Up @@ -392,8 +397,8 @@ sdks:
- x86-64
- distribution-type: library
distribution-repository: GitHub release
package-name: php-6.1.0.zip
location: https://github.com/pubnub/php/releases/tag/v6.1.0
package-name: php-6.1.1.zip
location: https://github.com/pubnub/php/releases/tag/v6.1.1
requires:
- name: rmccue/requests
min-version: 1.0.0
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v6.1.1
October 30 2023

#### Fixed
- Changed license type from MIT to PubNub Software Development Kit License.

## v6.1.0
October 16 2023

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ You will need the publish and subscribe keys to authenticate your app. Get your
{
"require": {
<!-- include the latest version from the badge at the top -->
"pubnub/pubnub": "6.1.0"
"pubnub/pubnub": "6.1.1"
}
}
```
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "pubnub/pubnub",
"type": "library",
"description": "The Only Global Network For Real-Time Data -- PubNub!",
"description": "This is the official PubNub PHP SDK repository.",
"keywords": ["api", "real-time", "realtime", "real time", "ajax", "push"],
"homepage": "http://www.pubnub.com/",
"license": "MIT",
"version": "6.1.0",
"license": "PubNub Software Development Kit License",
"version": "6.1.1",
"authors": [
{
"name": "PubNub",
Expand Down
2 changes: 1 addition & 1 deletion src/PubNub/PubNub.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

class PubNub implements LoggerAwareInterface
{
protected const SDK_VERSION = "6.1.0";
protected const SDK_VERSION = "6.1.1";
protected const SDK_NAME = "PubNub-PHP";

public static $MAX_SEQUENCE = 65535;
Expand Down
Loading