Skip to content

Commit abd12f7

Browse files
cortinicofacebook-github-bot
authored andcommitted
Prepare Version 0.12.0 (#129)
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
1 parent a98cbf9 commit abd12f7

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ You can use [prebuilt aars](https://github.com/facebook/soloader/releases/latest
2121
or fetch SoLoader from Maven repository by adding the following to your
2222
`build.gradle` file:
2323
```groovy
24-
implementation 'com.facebook.soloader:soloader:0.11.0+'
24+
implementation 'com.facebook.soloader:soloader:0.12.0+'
2525
```
2626

2727
## Building from source

artifacts/ANNOTATION

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ NAME = 'SoLoader'
33
GROUP = 'com.facebook.soloader'
44
ARTIFACT = 'annotation'
55
PACKAGING = 'jar'
6-
VERSION='0.11.0'
6+
VERSION='0.12.0'
77

88
DESCRIPTION = "DoNotOptimize class"
99
URL = 'https://github.com/facebook/soloader'

artifacts/NATIVELOADER

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ NAME = 'SoLoader'
33
GROUP = 'com.facebook.soloader'
44
ARTIFACT = 'nativeloader'
55
PACKAGING = 'jar'
6-
VERSION='0.11.0'
6+
VERSION='0.12.0'
77

88
DESCRIPTION = "Native code loading interface for Android"
99
URL = 'https://github.com/facebook/soloader'

artifacts/SOLOADER

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ NAME = 'SoLoader'
22

33
GROUP = 'com.facebook.soloader'
44
ARTIFACT = 'soloader'
5-
VERSION='0.11.0'
5+
VERSION='0.12.0'
66

77
DESCRIPTION = "Reliable native code loader for Android"
88
URL = 'https://github.com/facebook/soloader'
@@ -25,13 +25,13 @@ INTERNAL_DEPENDENCIES = (""
2525
"<dependency>"
2626
"<groupId>com.facebook.soloader</groupId>"
2727
"<artifactId>annotation</artifactId>"
28-
"<version>0.11.0</version>"
28+
"<version>0.12.0</version>"
2929
"<scope>compile</scope>"
3030
"</dependency>"
3131
"<dependency>"
3232
"<groupId>com.facebook.soloader</groupId>"
3333
"<artifactId>nativeloader</artifactId>"
34-
"<version>0.11.0</version>"
34+
"<version>0.12.0</version>"
3535
"<scope>compile</scope>"
3636
"</dependency>"
3737
"</dependencies>")

java/com/facebook/soloader/SoLoader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public class SoLoader {
9393
/* package */ @Nullable static SoFileLoader sSoFileLoader;
9494

9595
// optional identifier strings to facilitate bytecode analysis
96-
public static final String VERSION = "0.11.0";
96+
public static final String VERSION = "0.12.0";
9797

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

0 commit comments

Comments
 (0)