Skip to content

Commit

Permalink
v0.10.1
Browse files Browse the repository at this point in the history
Summary: Fix incorrect transitive dependencies in previous release.

Reviewed By: jknoxville, nikoant

Differential Revision: D26148085

fbshipit-source-id: 6a4de798b33db21c12f6dedc32b34834a9bfd8f0
  • Loading branch information
passy authored and facebook-github-bot committed Jan 29, 2021
1 parent d05555d commit da8051d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion artifacts/ANNOTATION
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion artifacts/NATIVELOADER
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
6 changes: 3 additions & 3 deletions artifacts/SOLOADER
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -25,13 +25,13 @@ INTERNAL_DEPENDENCIES = (""
"<dependency>"
"<groupId>com.facebook.soloader</groupId>"
"<artifactId>annotation</artifactId>"
"<version>0.9.0</version>"
"<version>0.10.1</version>"
"<scope>compile</scope>"
"</dependency>"
"<dependency>"
"<groupId>com.facebook.soloader</groupId>"
"<artifactId>nativeloader</artifactId>"
"<version>0.9.0</version>"
"<version>0.10.1</version>"
"<scope>compile</scope>"
"</dependency>"
"</dependencies>")

0 comments on commit da8051d

Please sign in to comment.