Skip to content

Commit b2a84f9

Browse files
Prepare release 3.3.1
1 parent 9d6763c commit b2a84f9

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.3.0` (2022/09/05, [Release Notes](https://docs.objectbox.io/#objectbox-changelog))**
16+
**Latest version: `3.3.1` (2022/09/05, [Release Notes](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

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

7979
```groovy
8080
buildscript {
81-
ext.objectboxVersion = "3.3.0"
81+
ext.objectboxVersion = "3.3.1"
8282
repositories {
8383
mavenCentral()
8484
}

build.gradle

+1-1
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.3.0' // without "-SNAPSHOT", e.g. '2.5.0' or '2.4.0-RC'
4+
def objectboxVersionNumber = '3.3.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

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

74-
private static final String VERSION = "3.3.0-2022-09-05";
74+
private static final String VERSION = "3.3.1-2022-09-05";
7575
private static BoxStore defaultStore;
7676

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

0 commit comments

Comments
 (0)