Skip to content

Commit

Permalink
bump version to 6.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
andresilveirah committed Dec 16, 2022
1 parent 53ea57e commit 7c0dfe0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 6.7.3 (Dec, 16, 2022)
* Fixed layout issues in the CCPA Native PM for TvOS when the message had less buttons than expected in the default UI. [#401](https://github.com/SourcePointUSA/ios-cmp-app/pull/401), [#397](https://github.com/SourcePointUSA/ios-cmp-app/pull/397)
* Fixed an issue preventing the "Do not sell information" button in the CCPA Native PM - from working as expected [#400](https://github.com/SourcePointUSA/ios-cmp-app/pull/400)
* Improved documentation and UI testing on TvOS

# 6.7.2 (Oct, 26, 2022)
* Added support to custom actions coming from the privacy manager. [#391](https://github.com/SourcePointUSA/ios-cmp-app/pull/391)

Expand Down
2 changes: 1 addition & 1 deletion ConsentViewController.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ConsentViewController'
s.version = '6.7.2'
s.version = '6.7.3'
s.summary = 'SourcePoint\'s ConsentViewController to handle privacy consents.'
s.homepage = 'https://www.sourcepoint.com'
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand Down
2 changes: 1 addition & 1 deletion ConsentViewController/Classes/SPConsentManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ import UIKit
}

@objc extension SPConsentManager: SPSDK {
public static let VERSION = "6.7.2"
public static let VERSION = "6.7.3"

public static func clearAllData() {
SPUserDefaults(storage: UserDefaults.standard).clear()
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
In your `Podfile` add the following line to your app target:

```
pod 'ConsentViewController', '6.7.2'
pod 'ConsentViewController', '6.7.3'
```

### Carthage
Expand Down Expand Up @@ -196,7 +196,7 @@ The SDK will follow the same exact same lifecycle as with the 1st layer consent

## Understanding the `SPDelegate` protocol (delegate methods)

### onSPUIReady(_ controller: UIViewController)
### onSPUIReady(_ controller: UIViewController
The SDK will wrap the web message into a `UIViewController` and call the `onSPUIReady` when there is a message to be displayed.

### optional onSPNativeMessageReady(_ message: SPNativeMessage)
Expand Down

0 comments on commit 7c0dfe0

Please sign in to comment.