Skip to content

Commit ff7697e

Browse files
Merge branch 'publish' into dev
2 parents cfdf381 + a6267da commit ff7697e

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

README.md

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

7-
**Latest version: [3.0.1 (2021/10/19)](https://docs.objectbox.io/#objectbox-changelog)**
7+
**Latest version: [3.1.0 (2021/12/15)](https://docs.objectbox.io/#objectbox-changelog)**
88

99
Demo code using ObjectBox:
1010

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

4141
```groovy
4242
buildscript {
43-
ext.objectboxVersion = "3.0.1"
43+
ext.objectboxVersion = "3.1.0"
4444
repositories {
4545
mavenCentral()
4646
}

build.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
buildscript {
22
ext {
33
// Typically, only edit those two:
4-
def objectboxVersionNumber = '3.0.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
4+
def objectboxVersionNumber = '3.1.0' // without "-SNAPSHOT", e.g. '2.5.0' or '2.4.0-RC'
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')
@@ -175,4 +175,7 @@ nexusPublishing {
175175
}
176176
}
177177
}
178+
transitionCheckOptions { // Maven Central may become very, very slow in extreme situations
179+
maxRetries.set(900) // with default delay of 10s, that's 150 minutes total; default is 60 (10 minutes)
180+
}
178181
}

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

Lines changed: 2 additions & 2 deletions
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.0.1";
72+
public static final String JNI_VERSION = "3.1.0";
7373

74-
private static final String VERSION = "3.0.1-2021-10-18";
74+
private static final String VERSION = "3.1.0-2021-12-15";
7575
private static BoxStore defaultStore;
7676

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

0 commit comments

Comments
 (0)