Skip to content

Commit

Permalink
Prepare Version 0.12.0 (#129)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #129

This bumps all the version numbers to 0.12.0 to be ready for a new release.

Reviewed By: cipolleschi

Differential Revision: D62444507

fbshipit-source-id: 16f5fd5e29fd5bf7a6f6896455407f393e3bb1b6
  • Loading branch information
cortinico authored and facebook-github-bot committed Sep 11, 2024
1 parent a98cbf9 commit abd12f7
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
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.11.0+'
implementation 'com.facebook.soloader:soloader:0.12.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.11.0'
VERSION='0.12.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.11.0'
VERSION='0.12.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.11.0'
VERSION='0.12.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.11.0</version>"
"<version>0.12.0</version>"
"<scope>compile</scope>"
"</dependency>"
"<dependency>"
"<groupId>com.facebook.soloader</groupId>"
"<artifactId>nativeloader</artifactId>"
"<version>0.11.0</version>"
"<version>0.12.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.11.0";
public static final String VERSION = "0.12.0";

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

0 comments on commit abd12f7

Please sign in to comment.