diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4bccbbb..119b11f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/Paddle.framework/Versions/A/Headers/PADProduct.h b/Paddle.framework/Versions/A/Headers/PADProduct.h
index 9dc7cc6..0a19c44 100644
--- a/Paddle.framework/Versions/A/Headers/PADProduct.h
+++ b/Paddle.framework/Versions/A/Headers/PADProduct.h
@@ -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
diff --git a/Paddle.framework/Versions/A/Paddle b/Paddle.framework/Versions/A/Paddle
index 29f70d8..ec65bed 100755
Binary files a/Paddle.framework/Versions/A/Paddle and b/Paddle.framework/Versions/A/Paddle differ
diff --git a/Paddle.framework/Versions/A/Resources/Base.lproj/PADProductNoTrialWindow.nib b/Paddle.framework/Versions/A/Resources/Base.lproj/PADProductNoTrialWindow.nib
index 7fedb3f..6afb90e 100644
Binary files a/Paddle.framework/Versions/A/Resources/Base.lproj/PADProductNoTrialWindow.nib and b/Paddle.framework/Versions/A/Resources/Base.lproj/PADProductNoTrialWindow.nib differ
diff --git a/Paddle.framework/Versions/A/Resources/Base.lproj/PADProductWindow.nib b/Paddle.framework/Versions/A/Resources/Base.lproj/PADProductWindow.nib
index 46c9f0e..8bd2d47 100644
Binary files a/Paddle.framework/Versions/A/Resources/Base.lproj/PADProductWindow.nib and b/Paddle.framework/Versions/A/Resources/Base.lproj/PADProductWindow.nib differ
diff --git a/Paddle.framework/Versions/A/Resources/Info.plist b/Paddle.framework/Versions/A/Resources/Info.plist
index d939e90..9b6f705 100644
--- a/Paddle.framework/Versions/A/Resources/Info.plist
+++ b/Paddle.framework/Versions/A/Resources/Info.plist
@@ -17,13 +17,13 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 4.0.15
+ 4.0.16
CFBundleSupportedPlatforms
MacOSX
CFBundleVersion
- 4.0.15
+ 4.0.16
DTCompiler
com.apple.compilers.llvm.clang.1_0
DTPlatformBuild
diff --git a/PaddleV4.podspec b/PaddleV4.podspec
index dfd2bee..4ad9674 100644
--- a/PaddleV4.podspec
+++ b/PaddleV4.podspec
@@ -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"
@@ -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