Skip to content

Commit

Permalink
feat/Version 2.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adam1929 authored Oct 20, 2022
1 parent 685f8c2 commit 20e7929
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 18 deletions.
9 changes: 9 additions & 0 deletions Documentation/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
## Release Notes
## Release Notes for 2.13.0
#### October 19, 2022
* Features
* Added feature to handle tracking consent according to DSGVO/GDPR
* Guiding documentation added for Push notification update after certain circumstances
* Bug Fixes
* Fixed: Webview configuration updated according to newer XCode14


## Release Notes for 2.12.3
#### September 20, 2022
* Bug Fixes
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.12.3"
s.version = "2.13.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.12.3"
s.version = "2.13.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.12.3</string>
<string>2.13.0</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand All @@ -30,7 +30,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>58</string>
<string>59</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIBackgroundModes</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.12.3</string>
<string>2.13.0</string>
<key>CFBundleVersion</key>
<string>58</string>
<string>59</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.12.3</string>
<string>2.13.0</string>
<key>CFBundleVersion</key>
<string>58</string>
<string>59</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.12.3</string>
<string>2.13.0</string>
<key>CFBundleVersion</key>
<string>58</string>
<string>59</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.12.3</string>
<string>2.13.0</string>
<key>CFBundleVersion</key>
<string>58</string>
<string>59</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.12.3"
public static let version = "2.13.0"
/// A logger used to log all messages from the SDK.
public static var logger: Logger = Logger()

Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,25 @@

![Platform](https://img.shields.io/badge/Platform-iOS-lightgrey.svg?style=flat)
![Platform](https://img.shields.io/badge/Swift-4.1-green.svg?style=flat)
[![License](https://img.shields.io/badge/License-Apache%202.0-yellow.svg)](https://opensource.org/licenses/Apache-2.0)
[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## Exponea iOS SDK

This library allows you to interact from your application or game with the Exponea App. Exponea empowers B2C marketers to raise conversion rates, improve acquisition ROI, and maximize customer lifetime value.

It has been written 100% in Swift with ❤️


## 📦 Installation

### CocoaPods

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

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

> Read more about rich push notifications support [here](./Documentation/PUSH.md).
Expand All @@ -33,7 +32,7 @@ pod "ExponeaSDK-Notifications", "~> 2.12.3"
> 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.12.3
github "exponea/exponea-ios-sdk" ~> 2.13.0
```

## 📱 Demo Application
Expand Down

0 comments on commit 20e7929

Please sign in to comment.