Skip to content

Commit

Permalink
Prepare release 3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot-team committed Feb 21, 2022
1 parent 108d291 commit 6c7a977
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[ObjectBox](https://objectbox.io/) is a superfast object-oriented database with strong relation support.
ObjectBox is embedded into your Android, Linux, macOS, or Windows app.

**Latest version: [3.1.1 (2022/01/26)](https://docs.objectbox.io/#objectbox-changelog)**
**Latest version: [3.1.2 (2022/02/21)](https://docs.objectbox.io/#objectbox-changelog)**

Demo code using ObjectBox:

Expand Down Expand Up @@ -51,7 +51,7 @@ For Android projects, add the ObjectBox Gradle plugin to your root `build.gradle

```groovy
buildscript {
ext.objectboxVersion = "3.1.1"
ext.objectboxVersion = "3.1.2"
repositories {
mavenCentral()
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ buildscript {
ext {
// Typically, only edit those two:
def objectboxVersionNumber = '3.1.2' // without "-SNAPSHOT", e.g. '2.5.0' or '2.4.0-RC'
def objectboxVersionRelease = false // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions
def objectboxVersionRelease = true // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions

// version post fix: '-<value>' or '' if not defined; e.g. used by CI to pass in branch name
def versionPostFixValue = project.findProperty('versionPostFix')
Expand Down
4 changes: 2 additions & 2 deletions objectbox-java/src/main/java/io/objectbox/BoxStore.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ public class BoxStore implements Closeable {
@Nullable private static Object relinker;

/** Change so ReLinker will update native library when using workaround loading. */
public static final String JNI_VERSION = "3.1.1";
public static final String JNI_VERSION = "3.1.2";

private static final String VERSION = "3.1.1-2022-01-25";
private static final String VERSION = "3.1.2-2022-02-15";
private static BoxStore defaultStore;

/** Currently used DB dirs with values from {@link #getCanonicalPath(File)}. */
Expand Down

0 comments on commit 6c7a977

Please sign in to comment.