Skip to content

Commit

Permalink
Prepare release 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot-team committed May 16, 2023
1 parent 99df09b commit f196f82
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ For Android projects, add the ObjectBox Gradle plugin to your root `build.gradle

```groovy
buildscript {
ext.objectboxVersion = "3.5.1"
ext.objectboxVersion = "3.6.0"
repositories {
mavenCentral()
}
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

buildscript {
// Typically, only edit those two:
val objectboxVersionNumber = "3.5.2" // without "-SNAPSHOT", e.g. "2.5.0" or "2.4.0-RC"
val objectboxVersionNumber = "3.6.0" // without "-SNAPSHOT", e.g. "2.5.0" or "2.4.0-RC"
val objectboxVersionRelease =
false // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions
true // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions

// version post fix: "-<value>" or "" if not defined; e.g. used by CI to pass in branch name
val versionPostFixValue = project.findProperty("versionPostFix")
Expand Down
4 changes: 2 additions & 2 deletions objectbox-java/src/main/java/io/objectbox/BoxStore.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ public class BoxStore implements Closeable {
@Nullable private static Object relinker;

/** Change so ReLinker will update native library when using workaround loading. */
public static final String JNI_VERSION = "3.5.1";
public static final String JNI_VERSION = "3.6.0";

private static final String VERSION = "3.5.1-2023-01-26";
private static final String VERSION = "3.6.0-2023-05-16";
private static BoxStore defaultStore;

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

0 comments on commit f196f82

Please sign in to comment.