From da8051df79ee80546dc5682aa337232c0144f52e Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Fri, 29 Jan 2021 09:54:24 -0800 Subject: [PATCH] v0.10.1 Summary: Fix incorrect transitive dependencies in previous release. Reviewed By: jknoxville, nikoant Differential Revision: D26148085 fbshipit-source-id: 6a4de798b33db21c12f6dedc32b34834a9bfd8f0 --- README.md | 2 +- artifacts/ANNOTATION | 2 +- artifacts/NATIVELOADER | 2 +- artifacts/SOLOADER | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2c3ed4b..43ac60d 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ You can use [prebuilt aars](https://github.com/facebook/soloader/releases/latest or fetch SoLoader from Maven repository by adding the following to your `build.gradle` file: ```groovy -implementation 'com.facebook.soloader:soloader:0.9.0+' +implementation 'com.facebook.soloader:soloader:0.10.1+' ``` ## Building from source diff --git a/artifacts/ANNOTATION b/artifacts/ANNOTATION index 2716a00..28be83c 100644 --- a/artifacts/ANNOTATION +++ b/artifacts/ANNOTATION @@ -3,7 +3,7 @@ NAME = 'SoLoader' GROUP = 'com.facebook.soloader' ARTIFACT = 'annotation' PACKAGING = 'jar' -VERSION='0.10.0' +VERSION='0.10.1' DESCRIPTION = "DoNotOptimize class" URL = 'https://github.com/facebook/soloader' diff --git a/artifacts/NATIVELOADER b/artifacts/NATIVELOADER index 00e848d..c6152b4 100644 --- a/artifacts/NATIVELOADER +++ b/artifacts/NATIVELOADER @@ -3,7 +3,7 @@ NAME = 'SoLoader' GROUP = 'com.facebook.soloader' ARTIFACT = 'nativeloader' PACKAGING = 'jar' -VERSION='0.10.0' +VERSION='0.10.1' DESCRIPTION = "Native code loading interface for Android" URL = 'https://github.com/facebook/soloader' diff --git a/artifacts/SOLOADER b/artifacts/SOLOADER index fa57f94..f158441 100644 --- a/artifacts/SOLOADER +++ b/artifacts/SOLOADER @@ -2,7 +2,7 @@ NAME = 'SoLoader' GROUP = 'com.facebook.soloader' ARTIFACT = 'soloader' -VERSION='0.10.0' +VERSION='0.10.1' DESCRIPTION = "Reliable native code loader for Android" URL = 'https://github.com/facebook/soloader' @@ -25,13 +25,13 @@ INTERNAL_DEPENDENCIES = ("" "" "com.facebook.soloader" "annotation" - "0.9.0" + "0.10.1" "compile" "" "" "com.facebook.soloader" "nativeloader" - "0.9.0" + "0.10.1" "compile" "" "")