From 5a6834848c4523956441982abf2e71d43fd1145c Mon Sep 17 00:00:00 2001 From: PubNub Release Bot <120067856+pubnub-release-bot@users.noreply.github.com> Date: Tue, 10 Dec 2024 14:27:24 +0000 Subject: [PATCH] PubNub SDK v7.3.0 release. --- .pubnub.yml | 9 +++++++-- CHANGELOG.md | 6 ++++++ pubnub.go | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.pubnub.yml b/.pubnub.yml index 1159a0c2..216f6223 100644 --- a/.pubnub.yml +++ b/.pubnub.yml @@ -1,6 +1,11 @@ --- -version: v7.2.1 +version: v7.3.0 changelog: + - date: 2024-12-10 + version: v7.3.0 + changes: + - type: feature + text: "Add `CustomMessageType` to messages and files." - date: 2023-11-27 version: v7.2.1 changes: @@ -745,7 +750,7 @@ sdks: distribution-type: package distribution-repository: GitHub package-name: Go - location: https://github.com/pubnub/go/releases/tag/v7.2.1 + location: https://github.com/pubnub/go/releases/tag/v7.3.0 requires: - name: "Go" diff --git a/CHANGELOG.md b/CHANGELOG.md index 23ef2b7a..209c4bc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v7.3.0 +December 10 2024 + +#### Added +- Add `CustomMessageType` to messages and files. + ## v7.2.1 November 27 2023 diff --git a/pubnub.go b/pubnub.go index 5ea96106..324e16e9 100644 --- a/pubnub.go +++ b/pubnub.go @@ -15,7 +15,7 @@ import ( // Default constants const ( // Version :the version of the SDK - Version = "7.2.1" + Version = "7.3.0" // MaxSequence for publish messages MaxSequence = 65535 )