From 245a3424aa96696a6829488f7cb378e4395e7c2f Mon Sep 17 00:00:00 2001 From: Matthew Podwysocki Date: Wed, 6 Jan 2021 17:11:27 -0500 Subject: [PATCH] Update to 3.1.2 --- AzureNotificationHubs-iOS.podspec | 12 +++++++----- Config/Version.xcconfig | 2 +- Package.swift | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/AzureNotificationHubs-iOS.podspec b/AzureNotificationHubs-iOS.podspec index dbcf45a0..a9a09cc2 100644 --- a/AzureNotificationHubs-iOS.podspec +++ b/AzureNotificationHubs-iOS.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "AzureNotificationHubs-iOS" - s.version = "3.1.1" + s.version = "3.1.2" s.summary = "Push notifications for consumer and enterprise apps – from any backend to any device platform" s.description = <<-DESC @@ -20,11 +20,13 @@ Pod::Spec.new do |s| s.frameworks = "Foundation", "SystemConfiguration" s.ios.frameworks = "UIKit" - s.ios.weak_frameworks = "UserNotifications" + s.tvos.frameworks = "UIKit" s.osx.frameworks = "AppKit" + s.ios.weak_frameworks = "UserNotifications" + s.tvos.weak_frameworks = "UserNotifications" s.osx.weak_frameworks = "UserNotifications" - s.ios.vendored_frameworks = "WindowsAzureMessaging-SDK-Apple/iOS/WindowsAzureMessaging.framework" - s.osx.vendored_frameworks = "WindowsAzureMessaging-SDK-Apple/macOS/WindowsAzureMessaging.framework" - s.tvos.vendored_frameworks = "WindowsAzureMessaging-SDK-Apple/tvOS/WindowsAzureMessaging.framework" + s.ios.vendored_frameworks = "WindowsAzureMessaging-SDK-Apple/WindowsAzureMessaging.xcframework" + s.tvos.vendored_frameworks = "WindowsAzureMessaging-SDK-Apple/WindowsAzureMessaging.xcframework" + s.osx.vendored_frameworks = "WindowsAzureMessaging-SDK-Apple/WindowsAzureMessaging.xcframework" end diff --git a/Config/Version.xcconfig b/Config/Version.xcconfig index 0839e31f..3b06310b 100644 --- a/Config/Version.xcconfig +++ b/Config/Version.xcconfig @@ -1,2 +1,2 @@ BUILD_NUMBER = 1 -VERSION_STRING = 3.1.1 +VERSION_STRING = 3.1.2 diff --git a/Package.swift b/Package.swift index fe12976b..8cdf09ff 100644 --- a/Package.swift +++ b/Package.swift @@ -24,7 +24,7 @@ let package = Package( path: "WindowsAzureMessaging/WindowsAzureMessaging", exclude: ["Support"], cSettings: [ - .define("NH_C_VERSION", to:"\"3.1.1\""), + .define("NH_C_VERSION", to:"\"3.1.2\""), .define("NH_C_BUILD", to:"\"1\""), .headerSearchPath("**"), ],