Skip to content

Commit b8716e6

Browse files
authored
PubNub SDK 4.1.0 (#85)
docs: update minimum OS versions Update minimum OS version number.
1 parent 502f5c3 commit b8716e6

File tree

5 files changed

+19
-6
lines changed

5 files changed

+19
-6
lines changed

.pubnub.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
11
---
22
name: swift
33
scm: github.com/pubnub/swift
4-
version: "4.0.2"
4+
version: "4.1.0"
55
schema: 1
66
changelog:
7+
- date: 2021-09-16
8+
version: 4.1.0
9+
changes:
10+
- type: feature
11+
text: "Add ability to parse permissions from token provided by servers."
12+
- type: feature
13+
text: "Make it possible to add component identifiers for requests."
14+
- type: bug
15+
text: "Fix `bufferTooSmall` and make temporary buffers for files encryption / decryption adaptive in size to provided stream buffer size."
16+
- type: bug
17+
text: "Don't perform HEX-encoding of `Data` with FCM token which should be used as-is."
18+
- type: improvement
19+
text: "Use `token` instead of `authKey` (if specified) for query `auth`."
720
- changes:
821
- text: "Memory leaks with captured request in subscription loop."
922
type: bug

PubNub.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2096,7 +2096,7 @@
20962096
"$(inherited)",
20972097
"$(TOOLCHAIN_DIR)/usr/lib/swift/macosx",
20982098
);
2099-
MARKETING_VERSION = 4.0.2;
2099+
MARKETING_VERSION = 4.1.0;
21002100
OTHER_CFLAGS = "$(inherited)";
21012101
OTHER_LDFLAGS = "$(inherited)";
21022102
OTHER_SWIFT_FLAGS = "$(inherited)";
@@ -2129,7 +2129,7 @@
21292129
"$(inherited)",
21302130
"$(TOOLCHAIN_DIR)/usr/lib/swift/macosx",
21312131
);
2132-
MARKETING_VERSION = 4.0.2;
2132+
MARKETING_VERSION = 4.1.0;
21332133
OTHER_CFLAGS = "$(inherited)";
21342134
OTHER_LDFLAGS = "$(inherited)";
21352135
OTHER_SWIFT_FLAGS = "$(inherited)";

PubNubSwift.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'PubNubSwift'
3-
s.version = '4.0.2'
3+
s.version = '4.1.0'
44
s.homepage = 'https://github.com/pubnub/swift'
55
s.documentation_url = 'https://www.pubnub.com/docs/swift-native/pubnub-swift-sdk'
66
s.authors = { 'PubNub, Inc.' => '[email protected]' }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ PubNub takes care of the infrastructure and APIs needed for the realtime communi
2323

2424
## Requirements
2525

26-
* iOS 8.0+ / macOS 10.10+ / Mac Catalyst 13.0+ / tvOS 9.0+ / watchOS 2.0+
26+
* iOS 9.0+ / macOS 10.11+ / Mac Catalyst 13.0+ / tvOS 9.0+ / watchOS 2.0+
2727
* Xcode 11+
2828
* Swift 5+
2929

Sources/PubNub/Helpers/Constants.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public struct Constant {
6262
}()
6363

6464
static let pubnubSwiftSDKVersion: String = {
65-
"4.0.2"
65+
"4.1.0"
6666
}()
6767

6868
static let appBundleId: String = {

0 commit comments

Comments
 (0)