From 009aba197b6bd28b6d94594217e76b79cff52930 Mon Sep 17 00:00:00 2001 From: Uwe <13865709+greenrobot-team@users.noreply.github.com> Date: Tue, 13 Feb 2024 11:48:03 +0100 Subject: [PATCH] Prepare Java release 3.8.0 --- README.md | 4 ++-- build.gradle.kts | 4 ++-- objectbox-java/src/main/java/io/objectbox/BoxStore.java | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7735cbaf..f5d0eeec 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ For Android projects, add the ObjectBox Gradle plugin to your root `build.gradle ```groovy buildscript { - ext.objectboxVersion = "3.7.1" + ext.objectboxVersion = "3.8.0" repositories { mavenCentral() } @@ -178,7 +178,7 @@ Besides JVM based languages like Java and Kotlin, ObjectBox also offers: ## License - Copyright 2017-2023 ObjectBox Ltd. All rights reserved. + Copyright 2017-2024 ObjectBox Ltd. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/build.gradle.kts b/build.gradle.kts index 12df2292..976547b0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -14,9 +14,9 @@ plugins { buildscript { // Typically, only edit those two: - val objectboxVersionNumber = "3.7.2" // without "-SNAPSHOT", e.g. "2.5.0" or "2.4.0-RC" + val objectboxVersionNumber = "3.8.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: "-" or "" if not defined; e.g. used by CI to pass in branch name val versionPostFixValue = project.findProperty("versionPostFix") diff --git a/objectbox-java/src/main/java/io/objectbox/BoxStore.java b/objectbox-java/src/main/java/io/objectbox/BoxStore.java index fafef6e6..814a178e 100644 --- a/objectbox-java/src/main/java/io/objectbox/BoxStore.java +++ b/objectbox-java/src/main/java/io/objectbox/BoxStore.java @@ -74,9 +74,9 @@ public class BoxStore implements Closeable { public static final String IN_MEMORY_PREFIX = "memory:"; /** Change so ReLinker will update native library when using workaround loading. */ - public static final String JNI_VERSION = "3.7.1"; + public static final String JNI_VERSION = "3.8.0"; - private static final String VERSION = "3.7.1-2023-11-07"; + private static final String VERSION = "3.8.0-2024-02-13"; private static BoxStore defaultStore; /** Currently used DB dirs with values from {@link #getCanonicalPath(File)}. */