Skip to content

Commit

Permalink
v4.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
avalore committed Jul 13, 2020
1 parent 6e7e67b commit edb894b
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# 4.0.16
- Fixed the issue introduced on the last release that was causing trial days to default to zero.

# 4.0.15

- Memory leaks.
- Deprecated convertPointToBase: in class NSView.
- Added parameters definitions to remove warnings in non-ARC projects.
- Removed unnecessary LLVM instrumentation causing it to write unnecessary default.profraw files.
- License verification race condition issue when offline, this was causing the callbacks to return `.unverified` instead of `.unableToVerify.
- License verification race condition issue when offline, this was causing the callbacks to return `.unverified` instead of `.unableToVerify`.
- Incorrect error being passed when
- More than one error was present
- A default error would be shown when one was incorrectly caught from the API
Expand Down
6 changes: 3 additions & 3 deletions Paddle.framework/Versions/A/Headers/PADProduct.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,17 +91,17 @@ typedef NS_ENUM(NSInteger, PADProductType) {
* @discussion The activation date may be nil, as it was not always captured in previous
* versions of the v3 Paddle SDK.
*/
@property (strong, nullable) NSDate *activationDate;
@property (nullable) NSDate *activationDate;

/**
* @brief The activated license code.
*/
@property (copy, nonnull) NSString *license;
@property (nonnull) NSString *license;

/**
* @brief The email that was used to activate the license.
*/
@property (copy, nonnull) NSString *activationEmail;
@property (nonnull) NSString *activationEmail;

@end

Expand Down
Binary file modified Paddle.framework/Versions/A/Paddle
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions Paddle.framework/Versions/A/Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.0.15</string>
<string>4.0.16</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>4.0.15</string>
<string>4.0.16</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
Expand Down
4 changes: 2 additions & 2 deletions PaddleV4.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "PaddleV4"
s.version = "4.0.15"
s.version = "4.0.16"
s.summary = "A licensing framework for OS X"
s.description = "Paddle is an easy to use licensing framework for OS X including App Licensing and In App Purchases."
s.homepage = "https://www.paddle.com"
Expand Down Expand Up @@ -36,7 +36,7 @@ SOFTWARE.
}

s.platform = :osx, '10.10'
s.source = { :http => "https://s3.amazonaws.com/paddle-production-sdk-releases/macOS/v4/4.0.15/macOS-sdk-v4.0.15.zip" }
s.source = { :http => "https://s3.amazonaws.com/paddle-production-sdk-releases/macOS/v4/4.0.15/macOS-sdk-v4.0.16.zip" }

s.vendored_framework = 'Paddle.framework'
s.requires_arc = false
Expand Down

0 comments on commit edb894b

Please sign in to comment.