Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare version 0.13.0 #136

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,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.12.1+'
implementation 'com.facebook.soloader:soloader:0.13.0+'
```

## 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.12.1'
VERSION='0.13.0'

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.12.1'
VERSION='0.13.0'

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.12.1'
VERSION='0.13.0'

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.12.1</version>"
"<version>0.13.0</version>"
"<scope>compile</scope>"
"</dependency>"
"<dependency>"
"<groupId>com.facebook.soloader</groupId>"
"<artifactId>nativeloader</artifactId>"
"<version>0.12.1</version>"
"<version>0.13.0</version>"
"<scope>compile</scope>"
"</dependency>"
"</dependencies>")
2 changes: 1 addition & 1 deletion java/com/facebook/soloader/SoLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public class SoLoader {
/* package */ @Nullable static SoFileLoader sSoFileLoader;

// optional identifier strings to facilitate bytecode analysis
public static final String VERSION = "0.12.1";
public static final String VERSION = "0.13.0";

/**
* locking controlling the list of SoSources. We want to allow long running iterations over the
Expand Down
Loading