Skip to content

Commit

Permalink
Releases/v4.5.2
Browse files Browse the repository at this point in the history
Backfill header nullability annotations
  • Loading branch information
andrewjl-mux committed Jul 24, 2023
1 parent 9e43093 commit 765d553
Show file tree
Hide file tree
Showing 20 changed files with 26 additions and 30 deletions.
3 changes: 2 additions & 1 deletion MUXCore.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"4.4.1": "https://github.com/muxinc/stats-sdk-objc/releases/download/v4.4.1/MUXCore.xcframework.zip",
"4.4.2": "https://github.com/muxinc/stats-sdk-objc/releases/download/v4.4.2/MUXCore.xcframework.zip",
"4.5.0": "https://github.com/muxinc/stats-sdk-objc/releases/download/v4.5.0/MUXCore.xcframework.zip",
"4.5.1": "https://github.com/muxinc/stats-sdk-objc/releases/download/v4.5.1/MUXCore.xcframework.zip"
"4.5.1": "https://github.com/muxinc/stats-sdk-objc/releases/download/v4.5.1/MUXCore.xcframework.zip",
"4.5.2": "https://github.com/muxinc/stats-sdk-objc/releases/download/v4.5.2/MUXCore.xcframework.zip"
}


2 changes: 1 addition & 1 deletion Mux-Stats-Core.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'Mux-Stats-Core'

s.version = '4.5.1'
s.version = '4.5.2'

s.source = { :git => 'https://github.com/muxinc/stats-sdk-objc.git',
:tag => "v#{s.version}" }
Expand Down
14 changes: 7 additions & 7 deletions XCFramework/MuxCore.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>tvos-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>MuxCore.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -15,13 +15,13 @@
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<string>tvos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-maccatalyst</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>MuxCore.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -32,11 +32,11 @@
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>tvos-arm64_x86_64-simulator</string>
<string>ios-arm64_x86_64-maccatalyst</string>
<key>LibraryPath</key>
<string>MuxCore.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -45,9 +45,9 @@
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>maccatalyst</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ extern NSString * _Nonnull const MUXSDKPlaybackEventErrorEventType;

@property (nullable) NSString * errorContext;

-(id)init;
-(id)initWithContext:(NSString *)errorContext;
-(nonnull instancetype)initWithContext:(nullable NSString *)errorContext;

@end

Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ extern NSString * _Nonnull const MUXSDKPlaybackEventErrorEventType;

@property (nullable) NSString * errorContext;

-(id)init;
-(id)initWithContext:(NSString *)errorContext;
-(nonnull instancetype)initWithContext:(nullable NSString *)errorContext;

@end

Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>22D49</string>
<string>22F82</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
Expand All @@ -17,13 +17,13 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.5.1</string>
<string>4.5.2</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>4.5.1</string>
<string>4.5.2</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
Expand All @@ -37,9 +37,9 @@
<key>DTSDKName</key>
<string>macosx13.3</string>
<key>DTXcode</key>
<string>1430</string>
<string>1431</string>
<key>DTXcodeBuild</key>
<string>14E222b</string>
<string>14E300c</string>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
<key>UIDeviceFamily</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ extern NSString * _Nonnull const MUXSDKPlaybackEventErrorEventType;

@property (nullable) NSString * errorContext;

-(id)init;
-(id)initWithContext:(NSString *)errorContext;
-(nonnull instancetype)initWithContext:(nullable NSString *)errorContext;

@end

Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
</data>
<key>Headers/MUXSDKErrorEvent.h</key>
<data>
8lDc1YnmQXAjFrmH3Atg9koGF2I=
DK5scVmJE+qEJV0MuyLRF3vcdoE=
</data>
<key>Headers/MUXSDKEventHandling.h</key>
<data>
Expand Down Expand Up @@ -218,7 +218,7 @@
</data>
<key>Info.plist</key>
<data>
4GLc8Fo81Pr+NE52DjWFaXTKjR4=
diGTq9qz+WiiyfSKe5oFzIGpCgk=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -420,7 +420,7 @@
<dict>
<key>hash2</key>
<data>
/Y1DADpOekleP97/QtnRxWSPq29Nj1B1371euXzNCzE=
uYr5B4XIekCeeqy7PUiiRoL0/XpbdpFaCmoKW9TYeig=
</data>
</dict>
<key>Headers/MUXSDKEventHandling.h</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ extern NSString * _Nonnull const MUXSDKPlaybackEventErrorEventType;

@property (nullable) NSString * errorContext;

-(id)init;
-(id)initWithContext:(NSString *)errorContext;
-(nonnull instancetype)initWithContext:(nullable NSString *)errorContext;

@end

Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ extern NSString * _Nonnull const MUXSDKPlaybackEventErrorEventType;

@property (nullable) NSString * errorContext;

-(id)init;
-(id)initWithContext:(NSString *)errorContext;
-(nonnull instancetype)initWithContext:(nullable NSString *)errorContext;

@end

Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
</data>
<key>Headers/MUXSDKErrorEvent.h</key>
<data>
8lDc1YnmQXAjFrmH3Atg9koGF2I=
DK5scVmJE+qEJV0MuyLRF3vcdoE=
</data>
<key>Headers/MUXSDKEventHandling.h</key>
<data>
Expand Down Expand Up @@ -218,7 +218,7 @@
</data>
<key>Info.plist</key>
<data>
BNlj0KwaDxcZAu1tUW0lOqapZRQ=
YJcAQ2fA8lgYzxMLHoNy/3W/t6Y=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -420,7 +420,7 @@
<dict>
<key>hash2</key>
<data>
/Y1DADpOekleP97/QtnRxWSPq29Nj1B1371euXzNCzE=
uYr5B4XIekCeeqy7PUiiRoL0/XpbdpFaCmoKW9TYeig=
</data>
</dict>
<key>Headers/MUXSDKEventHandling.h</key>
Expand Down

0 comments on commit 765d553

Please sign in to comment.