From 240997b53b0360b7bb646dfc0a3d2bc5d4e67965 Mon Sep 17 00:00:00 2001 From: Nora Trapp Date: Mon, 23 Oct 2023 22:03:34 -0700 Subject: [PATCH] Change to release version of SDK --- .github/workflows/ci.yml | 4 +++- RNJuiceboxSdk.podspec | 2 +- android/build.gradle | 2 +- demo/ios/Podfile.lock | 10 +++++----- package.json | 2 +- 5 files changed, 11 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4750e9b..c77a161 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: - main env: - INSTALL_RUST_VERSION: "1.72" + INSTALL_RUST_VERSION: "1.73" jobs: lint: @@ -146,6 +146,7 @@ jobs: ${{ runner.os }}-cocoapods- - name: Install Rust + if: env.turbo_cache_hit != 1 && steps.cocoapods-cache.outputs.cache-hit != 'true' run: | rustup toolchain install ${{ env.INSTALL_RUST_VERSION }} --profile minimal --target x86_64-apple-ios,aarch64-apple-ios,aarch64-apple-ios-sim rustup default ${{ env.INSTALL_RUST_VERSION }} @@ -154,6 +155,7 @@ jobs: uses: Swatinem/rust-cache@v2 - name: Set up Git + if: env.turbo_cache_hit != 1 && steps.cocoapods-cache.outputs.cache-hit != 'true' run: | # Configures the global `git` CLI to be able to access private repos. # `pod` will make use of this. diff --git a/RNJuiceboxSdk.podspec b/RNJuiceboxSdk.podspec index 978c922..b0da365 100644 --- a/RNJuiceboxSdk.podspec +++ b/RNJuiceboxSdk.podspec @@ -17,7 +17,7 @@ Pod::Spec.new do |s| s.source_files = "ios/**/*.{h,m,mm,swift}" - s.dependency "JuiceboxSdk", "0.2.1-alpha.5+sdk.auth" + s.dependency "JuiceboxSdk" # Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0. # See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79. diff --git a/android/build.gradle b/android/build.gradle index 13f3ac2..18688f2 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -97,6 +97,6 @@ dependencies { //noinspection GradleDynamicVersion implementation "com.facebook.react:react-native:+" implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" - implementation "xyz.juicebox:sdk:0.2.1-alpha.5+sdk.auth" + implementation "xyz.juicebox:sdk:0.2.1" implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4" } diff --git a/demo/ios/Podfile.lock b/demo/ios/Podfile.lock index 2a64da8..d5c526e 100644 --- a/demo/ios/Podfile.lock +++ b/demo/ios/Podfile.lock @@ -73,7 +73,7 @@ PODS: - hermes-engine (0.72.6): - hermes-engine/Pre-built (= 0.72.6) - hermes-engine/Pre-built (0.72.6) - - "JuiceboxSdk (0.2.1-alpha.5+sdk.auth)" + - JuiceboxSdk (0.2.1) - libevent (2.1.12) - OpenSSL-Universal (1.1.1100) - RCT-Folly (2021.07.22.00): @@ -495,8 +495,8 @@ PODS: - RNGestureHandler (2.13.3): - RCT-Folly (= 2021.07.22.00) - React-Core - - RNJuiceboxSdk (0.2.1-alpha): - - "JuiceboxSdk (= 0.2.1-alpha.5+sdk.auth)" + - RNJuiceboxSdk (0.2.1): + - JuiceboxSdk - RCT-Folly (= 2021.07.22.00) - React-Core - RNScreens (3.26.0): @@ -706,7 +706,7 @@ SPEC CHECKSUMS: fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b hermes-engine: 8057e75cfc1437b178ac86c8654b24e7fead7f60 - JuiceboxSdk: cf26c563c14f0beccfd06b89dbd75e1d8218c99f + JuiceboxSdk: d448f1219474f2f43b3c15de83766af0a5db4a70 libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1 @@ -745,7 +745,7 @@ SPEC CHECKSUMS: ReactCommon: dd03c17275c200496f346af93a7b94c53f3093a4 RNCAsyncStorage: c913ede1fa163a71cea118ed4670bbaaa4b511bb RNGestureHandler: fa40ab6b6cafaa7609294d31f8e8fbbd0cce8ea6 - RNJuiceboxSdk: 9a3a65d3e8fa14819b679f06517910f16219095d + RNJuiceboxSdk: baeb0c022d95da6c23938d86aceea8b9112b6aa6 RNScreens: 2a28f2973f4d0d4623e18629ebfc2c4adaceb39a SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17 Yoga: b76f1acfda8212aa16b7e26bcce3983230c82603 diff --git a/package.json b/package.json index 8bbf896..03040d6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-juicebox-sdk", - "version": "0.2.1-alpha", + "version": "0.2.1", "description": "React native SDK for Juicebox", "main": "lib/commonjs/index", "module": "lib/module/index",