Skip to content

Commit

Permalink
Merge branch 'prepare_7.0.2' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
andresilveirah committed Feb 24, 2023
2 parents f0067c9 + 23fe80f commit 8ead3c8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 7.0.2 (Feb, 24, 2023)
* Fixed an issue with our linting config preventing our CI from pointing out force unwrapping
* Removed all forced unwraps from the SDK's code
* Fixed an issue that would in some cases cause the app to crash [#416](https://github.com/SourcePointUSA/ios-cmp-app/pull/416) [DIA-1842](https://sourcepoint.atlassian.net/browse/DIA-1842)
* ⚠️ Deployment target 10 is no longer supported by XCode and global usage of iOS 10 and below is very low. We are strongly considering bumping the iOS deployment target from 10 to 11 in the next minor release.

# 7.0.1 (Feb, 08, 2023)
* Fixed an issue preventing the SDK from overwriting the language setting of the 1st layer message. [#414](https://github.com/SourcePointUSA/ios-cmp-app/pull/414) [DIA-1770](https://sourcepoint.atlassian.net/browse/DIA-1770)
* Fixed an issue that would cause some users of a CCPA campaign to have their data reset after taking a consent action. [#413](https://github.com/SourcePointUSA/ios-cmp-app/pull/413) [DIA-1694](https://sourcepoint.atlassian.net/browse/DIA-1694)
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 = '7.0.1'
s.version = '7.0.2'
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 @@ -285,7 +285,7 @@ import UIKit
}

@objc extension SPConsentManager: SPSDK {
public static let VERSION = "7.0.1"
public static let VERSION = "7.0.2"

public var gdprApplies: Bool { spCoordinator.userData.gdpr?.applies ?? false }

Expand Down
2 changes: 1 addition & 1 deletion 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', '7.0.1'
pod 'ConsentViewController', '7.0.2'
```

### Carthage
Expand Down

0 comments on commit 8ead3c8

Please sign in to comment.