Skip to content

Commit 55f385d

Browse files
Prepare release 3.2.0
1 parent 5934106 commit 55f385d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
[ObjectBox](https://objectbox.io/) is a superfast object-oriented Java database with strong relation support and easy-to-use native language APIs.
1414
ObjectBox is embedded into your Android, Linux, macOS, or Windows app.
1515

16-
**Latest version: [3.1.3 (2022/05/10)](https://docs.objectbox.io/#objectbox-changelog)**
16+
**Latest version: [3.2.0 (2022/06/20)](https://docs.objectbox.io/#objectbox-changelog)**
1717

1818
**Your opinion matters to us!** Please fill in this 2-minute [Anonymous Feedback Form](https://forms.gle/bdktGBUmL4m48ruj7).
1919

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

6868
```groovy
6969
buildscript {
70-
ext.objectboxVersion = "3.1.3"
70+
ext.objectboxVersion = "3.2.0"
7171
repositories {
7272
mavenCentral()
7373
}

build.gradle

Lines changed: 2 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.1.4' // 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.2.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')

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

74-
private static final String VERSION = "3.2.0-2022-06-15";
74+
private static final String VERSION = "3.2.0-2022-06-20";
7575
private static BoxStore defaultStore;
7676

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

0 commit comments

Comments
 (0)