Skip to content

Commit 9d6763c

Browse files
Prepare release 3.3.0
1 parent 33b56c6 commit 9d6763c

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.2.1` (2022/07/05, [Release Notes](https://docs.objectbox.io/#objectbox-changelog))**
16+
**Latest version: `3.3.0` (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.2.1"
81+
ext.objectboxVersion = "3.3.0"
8282
repositories {
8383
mavenCentral()
8484
}

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.2.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.3.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.2.1";
72+
public static final String JNI_VERSION = "3.3.0";
7373

74-
private static final String VERSION = "3.2.1-2022-07-05";
74+
private static final String VERSION = "3.3.0-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)