Skip to content

Commit

Permalink
feat/Version 2.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ankmara authored Aug 2, 2023
1 parent 75df8f9 commit 7e045b9
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 16 deletions.
14 changes: 14 additions & 0 deletions Documentation/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
## Release Notes
## Release Notes for 2.17.0
#### August 02, 2023
* Features
* In-app content block feature has been added into SDK
* Handling of nil/null values inside objects sending tracking in requestFactory to avoid crashes
* Documentation is updated to describe fetching of In-app messages while identifyCustomer process in detail
* New devices supported for tracking events
* Bug Fixes
* Fixed: Action click event from In-app messages, and App Inbox HTML Inbox messages tracked button text with HTML tags
* Fixed: banner_type for HTML In-app messages is null instead of freeform
* Fixed: Webview for HTML In-app messages and App Inbox HTML Inbox messages not fully offline

> Note: Please note, we're working on the Bloomreach Engagement App release for the new In-app personalization features. This is just the mobile SDK part, for the new features, keep an eye on the Engagement App release notes, it will be released shortly.
## Release Notes for 2.16.4
#### July 11, 2023
* Features
Expand Down
2 changes: 1 addition & 1 deletion ExponeaSDK-Notifications.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
#

s.name = "ExponeaSDK-Notifications"
s.version = "2.16.4"
s.version = "2.17.0"
s.summary = "A completementary extension-safe framework for supporting rich push notifications in Exponea SDK."

# This description is used to generate tags and improve search results.
Expand Down
2 changes: 1 addition & 1 deletion ExponeaSDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
#

s.name = "ExponeaSDK"
s.version = "2.16.4"
s.version = "2.17.0"
s.summary = "Exponea SDK used to track and fetch data from Exponea Experience Cloud."

# This description is used to generate tags and improve search results.
Expand Down
4 changes: 2 additions & 2 deletions ExponeaSDK/Example/Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.16.4</string>
<string>2.17.0</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand All @@ -30,7 +30,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>69</string>
<string>70</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIApplicationSceneManifest</key>
Expand Down
4 changes: 2 additions & 2 deletions ExponeaSDK/ExampleNotificationContent/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>CFBundleShortVersionString</key>
<string>2.16.4</string>
<string>2.17.0</string>
<key>CFBundleVersion</key>
<string>69</string>
<string>70</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
Expand Down
4 changes: 2 additions & 2 deletions ExponeaSDK/ExampleNotificationService/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>CFBundleShortVersionString</key>
<string>2.16.4</string>
<string>2.17.0</string>
<key>CFBundleVersion</key>
<string>69</string>
<string>70</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionPointIdentifier</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.16.4</string>
<string>2.17.0</string>
<key>CFBundleVersion</key>
<string>69</string>
<string>70</string>
</dict>
</plist>
4 changes: 2 additions & 2 deletions ExponeaSDK/ExponeaSDK/Supporting Files/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.16.4</string>
<string>2.17.0</string>
<key>CFBundleVersion</key>
<string>69</string>
<string>70</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion ExponeaSDK/ExponeaSDKShared/Classes/Exponea.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import Foundation

public class Exponea {
public static let version = "2.16.4"
public static let version = "2.17.0"
/// A logger used to log all messages from the SDK.
public static var logger: Logger = Logger()

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ It has been written 100% in Swift with ❤️

```ruby
# Add this under your main application target
pod "ExponeaSDK", "~> 2.16.4"
pod "ExponeaSDK", "~> 2.17.0"

# If you also use rich push notifications,
# add this line to your notification service extension target.
pod "ExponeaSDK-Notifications", "~> 2.16.4"
pod "ExponeaSDK-Notifications", "~> 2.17.0"
```

> Read more about rich push notifications support [here](./Documentation/PUSH.md).
Expand All @@ -32,7 +32,7 @@ pod "ExponeaSDK-Notifications", "~> 2.16.4"
> Carthage will by default build both `ExponeaSDK` and `ExponeaSDKNotifications` frameworks. The latter one is only supposed to be used in a notification service extension if you wish support rich push notifications. Read more about rich push notifications [here](./Documentation/PUSH.md).
```
github "exponea/exponea-ios-sdk" ~> 2.16.4
github "exponea/exponea-ios-sdk" ~> 2.17.0
```
> And then in your Command line tool type ```carthage update --use-xcframeworks --platform ios```
Expand Down

0 comments on commit 7e045b9

Please sign in to comment.