From 9d3a2202793eef5cb1fae39cd681fd8f612a83a4 Mon Sep 17 00:00:00 2001 From: osakila Date: Wed, 13 Sep 2023 11:07:37 +0900 Subject: [PATCH] Update version 1.4.0 --- demos/demo-android/app/build.gradle | 2 +- demos/demo-ios/Podfile | 2 +- demos/demo-react-native/package.json | 2 +- flutter/android/build.gradle | 2 +- flutter/ios/theta_client_flutter.podspec | 4 ++-- flutter/pubspec.yaml | 2 +- kotlin-multiplatform/build.gradle.kts | 2 +- react-native/android/build.gradle | 2 +- react-native/package.json | 2 +- react-native/theta-client-react-native.podspec | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/demos/demo-android/app/build.gradle b/demos/demo-android/app/build.gradle index 4094d67a9c..063c6f0ee1 100755 --- a/demos/demo-android/app/build.gradle +++ b/demos/demo-android/app/build.gradle @@ -72,7 +72,7 @@ dependencies { implementation 'com.jakewharton.timber:timber:5.0.1' implementation 'io.coil-kt:coil-compose:2.2.2' implementation "io.ktor:ktor-client-cio:2.1.3" - implementation "com.ricoh360.thetaclient:theta-client:1.3.1" + implementation "com.ricoh360.thetaclient:theta-client:1.4.0" testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0' testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutines_version" diff --git a/demos/demo-ios/Podfile b/demos/demo-ios/Podfile index 4834c6ae14..03a67978bb 100644 --- a/demos/demo-ios/Podfile +++ b/demos/demo-ios/Podfile @@ -7,5 +7,5 @@ target 'SdkSample' do use_frameworks! # Pods for SdkSample - pod 'THETAClient', '1.3.1' + pod 'THETAClient', '1.4.0' end diff --git a/demos/demo-react-native/package.json b/demos/demo-react-native/package.json index 1c29b6aa4d..66e1557aee 100644 --- a/demos/demo-react-native/package.json +++ b/demos/demo-react-native/package.json @@ -12,7 +12,7 @@ "dependencies": { "@react-navigation/native": "^6.1.0", "@react-navigation/native-stack": "^6.9.5", - "theta-client-react-native": "1.3.1", + "theta-client-react-native": "1.4.0", "react": "18.2.0", "react-native": "0.70.6", "react-native-safe-area-context": "^4.4.1", diff --git a/flutter/android/build.gradle b/flutter/android/build.gradle index 83455a528b..685a5bd4d2 100644 --- a/flutter/android/build.gradle +++ b/flutter/android/build.gradle @@ -53,5 +53,5 @@ dependencies { implementation("io.ktor:ktor-serialization-kotlinx-json:2.1.2") implementation("com.soywiz.korlibs.krypto:krypto:3.4.0") - implementation("com.ricoh360.thetaclient:theta-client:1.3.1") + implementation("com.ricoh360.thetaclient:theta-client:1.4.0") } diff --git a/flutter/ios/theta_client_flutter.podspec b/flutter/ios/theta_client_flutter.podspec index 2562c29e0e..ae2ac62069 100644 --- a/flutter/ios/theta_client_flutter.podspec +++ b/flutter/ios/theta_client_flutter.podspec @@ -4,7 +4,7 @@ # Pod::Spec.new do |s| s.name = 'theta_client_flutter' - s.version = '1.3.1' + s.version = '1.4.0' s.summary = 'theta-client plugin project.' s.description = <<-DESC theta-client Flutter plugin project. @@ -17,7 +17,7 @@ Pod::Spec.new do |s| s.dependency 'Flutter' s.platform = :ios, '15.0' - s.dependency 'THETAClient', '1.3.1' + s.dependency 'THETAClient', '1.4.0' # Flutter.framework does not contain a i386 slice. s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' } diff --git a/flutter/pubspec.yaml b/flutter/pubspec.yaml index 6ac9baf07e..d0e50fa62e 100644 --- a/flutter/pubspec.yaml +++ b/flutter/pubspec.yaml @@ -1,6 +1,6 @@ name: theta_client_flutter description: THETA Client Flutter plugin project. -version: 1.3.1 +version: 1.4.0 homepage: environment: diff --git a/kotlin-multiplatform/build.gradle.kts b/kotlin-multiplatform/build.gradle.kts index fa04b70cd6..88d55e3f90 100644 --- a/kotlin-multiplatform/build.gradle.kts +++ b/kotlin-multiplatform/build.gradle.kts @@ -18,7 +18,7 @@ dependencies { dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.8.20") } -val theta_client_version = "1.3.1" +val theta_client_version = "1.4.0" // Init publish property initProp() diff --git a/react-native/android/build.gradle b/react-native/android/build.gradle index d86eb952d4..a3e4c428fd 100644 --- a/react-native/android/build.gradle +++ b/react-native/android/build.gradle @@ -135,7 +135,7 @@ dependencies { implementation "com.facebook.react:react-native:+" implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4-native-mt" - implementation "com.ricoh360.thetaclient:theta-client:1.3.1" + implementation "com.ricoh360.thetaclient:theta-client:1.4.0" // From node_modules } diff --git a/react-native/package.json b/react-native/package.json index 1a3b4843ae..8e142f8894 100644 --- a/react-native/package.json +++ b/react-native/package.json @@ -1,6 +1,6 @@ { "name": "theta-client-react-native", - "version": "1.3.1", + "version": "1.4.0", "description": "This library provides a way to control RICOH THETA using.", "main": "lib/commonjs/index", "module": "lib/module/index", diff --git a/react-native/theta-client-react-native.podspec b/react-native/theta-client-react-native.podspec index 96b372cfc4..f8d6b66fcd 100644 --- a/react-native/theta-client-react-native.podspec +++ b/react-native/theta-client-react-native.podspec @@ -17,7 +17,7 @@ Pod::Spec.new do |s| s.source_files = "ios/**/*.{h,m,mm,swift}" s.dependency "React-Core" - s.dependency "THETAClient", "1.3.1" + s.dependency "THETAClient", "1.4.0" # Don't install the dependencies when we run `pod install` in the old architecture. if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then