Skip to content

Commit 4cb0ca5

Browse files
Prepare release 3.0.1
1 parent 9d8926c commit 4cb0ca5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

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

9-
**Latest version: [3.0.0 (2021/10/19)](https://docs.objectbox.io/#objectbox-changelog)**
9+
**Latest version: [3.0.1 (2021/10/19)](https://docs.objectbox.io/#objectbox-changelog)**
1010

1111
Demo code using ObjectBox:
1212

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

4343
```groovy
4444
buildscript {
45-
ext.objectboxVersion = "3.0.0"
45+
ext.objectboxVersion = "3.0.1"
4646
repositories {
4747
mavenCentral()
4848
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
buildscript {
22
ext {
33
// Typically, only edit those two:
4-
def objectboxVersionNumber = '3.0.0' // without "-SNAPSHOT", e.g. '2.5.0' or '2.4.0-RC'
4+
def objectboxVersionNumber = '3.0.1' // without "-SNAPSHOT", e.g. '2.5.0' or '2.4.0-RC'
55
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

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.0";
72+
public static final String JNI_VERSION = "3.0.1";
7373

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

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

0 commit comments

Comments
 (0)