From 271176b353fca9e89a37338d9121b4a57d81fc7b Mon Sep 17 00:00:00 2001 From: Renato Date: Wed, 2 Nov 2022 15:24:16 +0100 Subject: [PATCH 1/3] Bump version 42.0.0 --- example/RNExampleApp/android/app/build.gradle | 2 +- example/RNExampleApp/ios/RNExampleApp/Info.plist | 2 +- example/RNExampleApp/package.json | 2 +- plugin/package.json | 16 ++++++++-------- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/example/RNExampleApp/android/app/build.gradle b/example/RNExampleApp/android/app/build.gradle index 0aba4efb..eb8fea7c 100644 --- a/example/RNExampleApp/android/app/build.gradle +++ b/example/RNExampleApp/android/app/build.gradle @@ -104,7 +104,7 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode 4 - versionName "41.0.0" + versionName "42.0.0" multiDexEnabled true } diff --git a/example/RNExampleApp/ios/RNExampleApp/Info.plist b/example/RNExampleApp/ios/RNExampleApp/Info.plist index 23893d2c..3ecf1fd8 100644 --- a/example/RNExampleApp/ios/RNExampleApp/Info.plist +++ b/example/RNExampleApp/ios/RNExampleApp/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 41.0.2 + 42.0.0 CFBundleSignature ???? CFBundleVersion diff --git a/example/RNExampleApp/package.json b/example/RNExampleApp/package.json index 854101de..e42edc2f 100644 --- a/example/RNExampleApp/package.json +++ b/example/RNExampleApp/package.json @@ -1,6 +1,6 @@ { "name": "RNExampleApp", - "version": "41.0.2", + "version": "42.0.0", "private": true, "scripts": { "start": "node node_modules/react-native/local-cli/cli.js start", diff --git a/plugin/package.json b/plugin/package.json index 5c0602dc..cbdb8bf3 100644 --- a/plugin/package.json +++ b/plugin/package.json @@ -1,6 +1,6 @@ { - "_from": "anyline-ocr-react-native-module@^41.0.2", - "_id": "anyline-ocr-react-native-module@^41.0.2", + "_from": "anyline-ocr-react-native-module@^42.0.0", + "_id": "anyline-ocr-react-native-module@^42.0.0", "_inBundle": false, "_integrity": "sha512-BGi9zNkSsoxXywDBIqzgBRvKUBniQOJHDKBrozZubKthZNRBAj8Ry5tW0Me0yLXt/fauME//hbC0wsenfPJZqw==", "_location": "/anyline-ocr-react-native-module", @@ -8,19 +8,19 @@ "_requested": { "type": "range", "registry": true, - "raw": "anyline-ocr-react-native-module@^41.0.2", + "raw": "anyline-ocr-react-native-module@^42.0.0", "name": "anyline-ocr-react-native-module", "escapedName": "anyline-ocr-react-native-module", - "rawSpec": "^41.0.2", + "rawSpec": "^42.0.0", "saveSpec": null, - "fetchSpec": "^41.0.2" + "fetchSpec": "^42.0.0" }, "_requiredBy": [ "/" ], - "_resolved": "https://registry.npmjs.org/anyline-ocr-react-native-module/-/anyline-ocr-react-native-module-41.0.2.tgz", + "_resolved": "https://registry.npmjs.org/anyline-ocr-react-native-module/-/anyline-ocr-react-native-module-42.0.0.tgz", "_shasum": "bacbcd260cc662244f59393ed81a6edba009b52c", - "_spec": "anyline-ocr-react-native-module@^41.0.2", + "_spec": "anyline-ocr-react-native-module@^42.0.0", "_where": "/Users/amiransari/Projects/anyline-ocr-react-native-module1/example/RNExampleApp", "bugs": { "url": "https://github.com/Anyline/anyline-ocr-react-native-module/issues" @@ -47,5 +47,5 @@ "type": "git", "url": "git+https://github.com/Anyline/anyline-ocr-react-native-module.git" }, - "version": "41.0.2" + "version": "42.0.0" } From 4c3e015cedb475c99d5958c511f125bf21987402 Mon Sep 17 00:00:00 2001 From: Patrick Fekete Date: Thu, 3 Nov 2022 08:00:25 +0100 Subject: [PATCH 2/3] Update Android SDK version to 42.0.0-rc.1 --- plugin/android/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/android/build.gradle b/plugin/android/build.gradle index a9f7a91c..88873b85 100755 --- a/plugin/android/build.gradle +++ b/plugin/android/build.gradle @@ -59,13 +59,13 @@ repositories { dirs 'libs' } maven { - url 'https://anylinesdk.blob.core.windows.net/maven/' + url 'https://anylinesdk.blob.core.windows.net/testing/' } } dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) - implementation 'io.anyline:anylinesdk:41.0.0' + implementation 'io.anyline:anylinesdk:42.0.0-rc.1' implementation "com.facebook.react:react-native:+" // from node_modules implementation("com.google.android.material:material:1.4.0-rc01") implementation 'androidx.multidex:multidex:2.0.1' From 58718d76a0b4e19a75e6461b59b9bc50fe90951e Mon Sep 17 00:00:00 2001 From: Renato Date: Mon, 7 Nov 2022 11:56:19 +0100 Subject: [PATCH 3/3] Update native dependencies to 42.0.0 --- plugin/android/build.gradle | 4 ++-- plugin/ios/AnylineReact.podspec | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin/android/build.gradle b/plugin/android/build.gradle index 88873b85..07049689 100755 --- a/plugin/android/build.gradle +++ b/plugin/android/build.gradle @@ -59,13 +59,13 @@ repositories { dirs 'libs' } maven { - url 'https://anylinesdk.blob.core.windows.net/testing/' + url 'https://anylinesdk.blob.core.windows.net/maven/' } } dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) - implementation 'io.anyline:anylinesdk:42.0.0-rc.1' + implementation 'io.anyline:anylinesdk:42.0.0' implementation "com.facebook.react:react-native:+" // from node_modules implementation("com.google.android.material:material:1.4.0-rc01") implementation 'androidx.multidex:multidex:2.0.1' diff --git a/plugin/ios/AnylineReact.podspec b/plugin/ios/AnylineReact.podspec index ad594b44..da29083a 100644 --- a/plugin/ios/AnylineReact.podspec +++ b/plugin/ios/AnylineReact.podspec @@ -19,6 +19,6 @@ Pod::Spec.new do |s| s.source = { :git => "https://github.com/Anyline/anyline-ocr-react-native-module.git", :tag => "#{s.version}" } s.source_files = "*.{h,m}" - s.dependency "Anyline", "~> 41.0.1" + s.dependency "Anyline", "~> 42.0.0" s.dependency "React" end