From d874ddb92bda02752128dd01f991110324d15d64 Mon Sep 17 00:00:00 2001 From: PubNub Release Bot <120067856+pubnub-release-bot@users.noreply.github.com> Date: Mon, 27 Nov 2023 11:33:00 +0000 Subject: [PATCH] PubNub SDK v7.2.1 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 4d9ddc67..1159a0c2 100644 --- a/.pubnub.yml +++ b/.pubnub.yml @@ -1,6 +1,11 @@ --- -version: v7.2.0 +version: v7.2.1 changelog: + - date: 2023-11-27 + version: v7.2.1 + changes: + - type: bug + text: "Handle unencrypted message while getting messages with crypto." - date: 2023-10-16 version: v7.2.0 changes: @@ -740,7 +745,7 @@ sdks: distribution-type: package distribution-repository: GitHub package-name: Go - location: https://github.com/pubnub/go/releases/tag/v7.2.0 + location: https://github.com/pubnub/go/releases/tag/v7.2.1 requires: - name: "Go" diff --git a/CHANGELOG.md b/CHANGELOG.md index 074c9bd3..23ef2b7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v7.2.1 +November 27 2023 + +#### Fixed +- Handle unencrypted message while getting messages with crypto. + ## v7.2.0 October 16 2023 diff --git a/pubnub.go b/pubnub.go index e3e3f8ab..93c2a585 100644 --- a/pubnub.go +++ b/pubnub.go @@ -15,7 +15,7 @@ import ( // Default constants const ( // Version :the version of the SDK - Version = "7.2.0" + Version = "7.2.1" // MaxSequence for publish messages MaxSequence = 65535 )