Skip to content

Commit

Permalink
change versions to 2.7.0 (release)
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot committed Jul 30, 2020
1 parent d1cc08f commit d4e4326
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
buildscript {
ext {
// Typically, only edit those two:
def objectboxVersionNumber = '2.6.1' // without "-SNAPSHOT", e.g. '2.5.0' or '2.4.0-RC'
def objectboxVersionRelease = false // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions
def objectboxVersionNumber = '2.7.0' // without "-SNAPSHOT", e.g. '2.5.0' or '2.4.0-RC'
def objectboxVersionRelease = 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
def versionPostFixValue = project.findProperty('versionPostFix')
Expand Down
2 changes: 1 addition & 1 deletion objectbox-java/src/main/java/io/objectbox/BoxStore.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ 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 = "2.6.0";
public static final String JNI_VERSION = "2.7.0";

private static final String VERSION = "2.7.0-2020-07-30";
private static BoxStore defaultStore;
Expand Down

0 comments on commit d4e4326

Please sign in to comment.