From 0a969596543cf4fa8c05d785be2841ff109b0f6c Mon Sep 17 00:00:00 2001 From: Vincent Jardel Date: Tue, 19 Oct 2021 15:32:11 +0200 Subject: [PATCH 1/2] iOS: Bump SDK to 3.2.2 and UXKit to 1.5.2 --- RELEASENOTES.md | 3 +++ package.json | 2 +- plugin.xml | 2 +- src/ios/Cartfile | 4 ++-- src/ios/Cartfile.resolved | 4 ++-- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 3715329..47f1ccb 100755 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,5 +1,8 @@ # Release Notes +### 1.5.5 (Oct 19th, 2021) +- bump iOS SDK to 3.2.2 and iOS UXKit to 1.5.2 + ### 1.5.4 (Jul 8th, 2021 & Jul 27th, 2021) - bump iOS SDK to 3.2.0 and iOS UXKit to 1.5.0 - bump Android SDK to 3.2.1 and Android UXKit to 3.2.1 diff --git a/package.json b/package.json index 25ab66d..a451497 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-voxeet", - "version": "1.5.4", + "version": "1.5.5", "description": "Cordova Voxeet Plugin", "cordova": { "id": "cordova-plugin-voxeet", diff --git a/plugin.xml b/plugin.xml index d3f93f5..5f34e95 100755 --- a/plugin.xml +++ b/plugin.xml @@ -18,7 +18,7 @@ + version="1.5.5"> Voxeet Cordova Voxeet Plugin Apache 2.0 License diff --git a/src/ios/Cartfile b/src/ios/Cartfile index 7064747..9d57187 100644 --- a/src/ios/Cartfile +++ b/src/ios/Cartfile @@ -1,2 +1,2 @@ -github "voxeet/voxeet-uxkit-ios" == 1.5.0 -binary "https://raw.githubusercontent.com/voxeet/voxeet-sdk-ios/master/VoxeetSDK.json" == 3.2.0 \ No newline at end of file +github "voxeet/voxeet-uxkit-ios" == 1.5.2 +binary "https://raw.githubusercontent.com/voxeet/voxeet-sdk-ios/master/VoxeetSDK.json" == 3.2.2 \ No newline at end of file diff --git a/src/ios/Cartfile.resolved b/src/ios/Cartfile.resolved index 125cf3e..151ce3c 100644 --- a/src/ios/Cartfile.resolved +++ b/src/ios/Cartfile.resolved @@ -1,3 +1,3 @@ -binary "https://raw.githubusercontent.com/voxeet/voxeet-sdk-ios/master/VoxeetSDK.json" "3.2.0" +binary "https://raw.githubusercontent.com/voxeet/voxeet-sdk-ios/master/VoxeetSDK.json" "3.2.2" github "SDWebImage/SDWebImage" "5.11.0" -github "voxeet/voxeet-uxkit-ios" "1.5.0" +github "voxeet/voxeet-uxkit-ios" "1.5.2" From 51ce91769712ed38ce71e7c92650072180e4586c Mon Sep 17 00:00:00 2001 From: Vincent Jardel Date: Tue, 19 Oct 2021 15:49:16 +0200 Subject: [PATCH 2/2] iOS: Update carthage.sh --- carthage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/carthage.sh b/carthage.sh index 9892fb6..6e20e77 100755 --- a/carthage.sh +++ b/carthage.sh @@ -1 +1 @@ -set -euo pipefail;xcconfig=$(mktemp /tmp/static.xcconfig.XXXXXX);trap 'rm -f "$xcconfig"' INT TERM HUP EXIT;echo 'EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_simulator__NATIVE_ARCH_64_BIT_x86_64__XCODE_1200 = arm64 arm64e armv7 armv7s armv6 armv8' >> $xcconfig;echo 'EXCLUDED_ARCHS = $(inherited) $(EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_$(EFFECTIVE_PLATFORM_SUFFIX)__NATIVE_ARCH_64_BIT_$(NATIVE_ARCH_64_BIT)__XCODE_$(XCODE_VERSION_MAJOR))' >> $xcconfig;export XCODE_XCCONFIG_FILE="$xcconfig";carthage "$@" \ No newline at end of file +set -euo pipefail;xcconfig=$(mktemp /tmp/static.xcconfig.XXXXXX);trap 'rm -f "$xcconfig"' INT TERM HUP EXIT;CURRENT_XCODE_VERSION="$(xcodebuild -version | grep "Xcode" | cut -d' ' -f2 | cut -d'.' -f1)00";CURRENT_XCODE_BUILD=$(xcodebuild -version | grep "Build version" | cut -d' ' -f3);echo "EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_simulator__NATIVE_ARCH_64_BIT_x86_64__XCODE_${CURRENT_XCODE_VERSION}__BUILD_${CURRENT_XCODE_BUILD} = arm64 arm64e armv7 armv7s armv6 armv8" >> $xcconfig;echo 'EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_simulator__NATIVE_ARCH_64_BIT_x86_64__XCODE_'${CURRENT_XCODE_VERSION}' = $(EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_simulator__NATIVE_ARCH_64_BIT_x86_64__XCODE_$(XCODE_VERSION_MAJOR)__BUILD_$(XCODE_PRODUCT_BUILD_VERSION))' >> $xcconfig;echo 'EXCLUDED_ARCHS = $(inherited) $(EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_$(EFFECTIVE_PLATFORM_SUFFIX)__NATIVE_ARCH_64_BIT_$(NATIVE_ARCH_64_BIT)__XCODE_$(XCODE_VERSION_MAJOR))' >> $xcconfig;export XCODE_XCCONFIG_FILE="$xcconfig";carthage "$@" \ No newline at end of file