Skip to content

Commit 6c7a977

Browse files
Prepare release 3.1.2
1 parent 108d291 commit 6c7a977

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[ObjectBox](https://objectbox.io/) is a superfast object-oriented database with strong relation support.
66
ObjectBox is embedded into your Android, Linux, macOS, or Windows app.
77

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

1010
Demo code using ObjectBox:
1111

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

5252
```groovy
5353
buildscript {
54-
ext.objectboxVersion = "3.1.1"
54+
ext.objectboxVersion = "3.1.2"
5555
repositories {
5656
mavenCentral()
5757
}

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ buildscript {
22
ext {
33
// Typically, only edit those two:
44
def objectboxVersionNumber = '3.1.2' // without "-SNAPSHOT", e.g. '2.5.0' or '2.4.0-RC'
5-
def objectboxVersionRelease = false // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions
5+
def objectboxVersionRelease = true // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions
66

77
// version post fix: '-<value>' or '' if not defined; e.g. used by CI to pass in branch name
88
def versionPostFixValue = project.findProperty('versionPostFix')

objectbox-java/src/main/java/io/objectbox/BoxStore.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ public class BoxStore implements Closeable {
6969
@Nullable private static Object relinker;
7070

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

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

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

0 commit comments

Comments
 (0)