Skip to content

Commit 240997b

Browse files
committed
Change to release version of SDK
1 parent d7b06f4 commit 240997b

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- main
99

1010
env:
11-
INSTALL_RUST_VERSION: "1.72"
11+
INSTALL_RUST_VERSION: "1.73"
1212

1313
jobs:
1414
lint:
@@ -146,6 +146,7 @@ jobs:
146146
${{ runner.os }}-cocoapods-
147147
148148
- name: Install Rust
149+
if: env.turbo_cache_hit != 1 && steps.cocoapods-cache.outputs.cache-hit != 'true'
149150
run: |
150151
rustup toolchain install ${{ env.INSTALL_RUST_VERSION }} --profile minimal --target x86_64-apple-ios,aarch64-apple-ios,aarch64-apple-ios-sim
151152
rustup default ${{ env.INSTALL_RUST_VERSION }}
@@ -154,6 +155,7 @@ jobs:
154155
uses: Swatinem/rust-cache@v2
155156

156157
- name: Set up Git
158+
if: env.turbo_cache_hit != 1 && steps.cocoapods-cache.outputs.cache-hit != 'true'
157159
run: |
158160
# Configures the global `git` CLI to be able to access private repos.
159161
# `pod` will make use of this.

RNJuiceboxSdk.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717

1818
s.source_files = "ios/**/*.{h,m,mm,swift}"
1919

20-
s.dependency "JuiceboxSdk", "0.2.1-alpha.5+sdk.auth"
20+
s.dependency "JuiceboxSdk"
2121

2222
# Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
2323
# See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,6 @@ dependencies {
9797
//noinspection GradleDynamicVersion
9898
implementation "com.facebook.react:react-native:+"
9999
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
100-
implementation "xyz.juicebox:sdk:0.2.1-alpha.5+sdk.auth"
100+
implementation "xyz.juicebox:sdk:0.2.1"
101101
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4"
102102
}

demo/ios/Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ PODS:
7373
- hermes-engine (0.72.6):
7474
- hermes-engine/Pre-built (= 0.72.6)
7575
- hermes-engine/Pre-built (0.72.6)
76-
- "JuiceboxSdk (0.2.1-alpha.5+sdk.auth)"
76+
- JuiceboxSdk (0.2.1)
7777
- libevent (2.1.12)
7878
- OpenSSL-Universal (1.1.1100)
7979
- RCT-Folly (2021.07.22.00):
@@ -495,8 +495,8 @@ PODS:
495495
- RNGestureHandler (2.13.3):
496496
- RCT-Folly (= 2021.07.22.00)
497497
- React-Core
498-
- RNJuiceboxSdk (0.2.1-alpha):
499-
- "JuiceboxSdk (= 0.2.1-alpha.5+sdk.auth)"
498+
- RNJuiceboxSdk (0.2.1):
499+
- JuiceboxSdk
500500
- RCT-Folly (= 2021.07.22.00)
501501
- React-Core
502502
- RNScreens (3.26.0):
@@ -706,7 +706,7 @@ SPEC CHECKSUMS:
706706
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
707707
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
708708
hermes-engine: 8057e75cfc1437b178ac86c8654b24e7fead7f60
709-
JuiceboxSdk: cf26c563c14f0beccfd06b89dbd75e1d8218c99f
709+
JuiceboxSdk: d448f1219474f2f43b3c15de83766af0a5db4a70
710710
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
711711
OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
712712
RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
@@ -745,7 +745,7 @@ SPEC CHECKSUMS:
745745
ReactCommon: dd03c17275c200496f346af93a7b94c53f3093a4
746746
RNCAsyncStorage: c913ede1fa163a71cea118ed4670bbaaa4b511bb
747747
RNGestureHandler: fa40ab6b6cafaa7609294d31f8e8fbbd0cce8ea6
748-
RNJuiceboxSdk: 9a3a65d3e8fa14819b679f06517910f16219095d
748+
RNJuiceboxSdk: baeb0c022d95da6c23938d86aceea8b9112b6aa6
749749
RNScreens: 2a28f2973f4d0d4623e18629ebfc2c4adaceb39a
750750
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
751751
Yoga: b76f1acfda8212aa16b7e26bcce3983230c82603

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-juicebox-sdk",
3-
"version": "0.2.1-alpha",
3+
"version": "0.2.1",
44
"description": "React native SDK for Juicebox",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

0 commit comments

Comments
 (0)