Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Commit

Permalink
Update of version 3.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof Kurzawa committed Apr 28, 2022
1 parent c7ea930 commit 2f9b14c
Show file tree
Hide file tree
Showing 11 changed files with 1,481 additions and 1,473 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.

Note that Objective-C class names are prefixed by `SNR`. In the changelog below, these are names used in Swift, without the prefix.

## [3.11.1] - 2022-04-28

### Fixed
- Potential issue with sending `push.view` events in notification services.
- Incorrect type for `extras` property in `RecommendationResponse` model.


## [3.11.0] - 2022-04-13

### Changed
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Pod/SyneriseSDK.framework.dSYM/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>3.11.0</string>
<string>3.11.1</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#import <SyneriseSDK/SNRBaseModel.h>
#import <SyneriseSDK/SNRRecommendation.h>
#import <SyneriseSDK/SNRRecommendationResponseExtras.h>

NS_ASSUME_NONNULL_BEGIN

Expand All @@ -27,7 +28,7 @@ NS_SWIFT_NAME(RecommendationResponse)
@property (strong, nonatomic, nonnull, readonly) NSString *slug;
@property (strong, nonatomic, nonnull, readonly) NSString *UUID;

@property (strong, nonatomic, nonnull, readonly) NSDictionary *extras;
@property (strong, nonatomic, nonnull, readonly) SNRRecommendationResponseExtras *extras;

@property (strong, nonatomic, nonnull, readonly) NSArray<SNRRecommendation *> *items;

Expand Down
Binary file modified Pod/SyneriseSDK.framework/Info.plist
Binary file not shown.
Binary file modified Pod/SyneriseSDK.framework/SyneriseSDK
Binary file not shown.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Synerise iOS SDK (v3.11.0) - User documentation
# Synerise iOS SDK (v3.11.1) - User documentation

[![Platform](https://img.shields.io/badge/platform-iOS-orange.svg)](https://github.com/synerise/ios-sdk)
[![Languages](https://img.shields.io/badge/language-Objective--C%20%7C%20Swift-orange.svg)](https://github.com/synerise/ios-sdk)
[![CocoaPods](https://img.shields.io/badge/pod-v3.11.0-green.svg)](https://cocoapods.org/pods/SyneriseSDK)
[![CocoaPods](https://img.shields.io/badge/pod-v3.11.1-green.svg)](https://cocoapods.org/pods/SyneriseSDK)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)

## Documentation
Expand Down
4 changes: 2 additions & 2 deletions SyneriseSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "SyneriseSDK"
s.version = "3.11.0"
s.summary = "SyneriseSDK v. 3.11.0"
s.version = "3.11.1"
s.summary = "SyneriseSDK v. 3.11.1"
s.description = "iOS library for Synerise omnichannel platform"
s.homepage = "https://synerise.com"
s.license = { :type => "MIT" }
Expand Down

0 comments on commit 2f9b14c

Please sign in to comment.