Skip to content

Commit 7d5f6ca

Browse files
Prepare release 3.2.1
1 parent aace196 commit 7d5f6ca

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
@@ -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.2.0 (2022/06/20)](https://docs.objectbox.io/#objectbox-changelog)**
16+
**Latest version: [3.2.1 (2022/07/05)](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.2.0"
70+
ext.objectboxVersion = "3.2.1"
7171
repositories {
7272
mavenCentral()
7373
}

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.2.1' // 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.2.0";
72+
public static final String JNI_VERSION = "3.2.1";
7373

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

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

0 commit comments

Comments
 (0)